| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function toArray($request) |
||
| 19 | { |
||
| 20 | return [ |
||
| 21 | 'code' => view('components.datatables.link', [ |
||
| 22 | 'url' => route('admin.order.show', $this->resource->code), |
||
| 23 | 'name' => $this->resource->code, |
||
| 24 | ])->render(), |
||
| 25 | 'customer_fullname' => view('components.datatables.link', [ |
||
| 26 | 'url' => route('admin.customer.edit', $this->resource->customer), |
||
| 27 | 'name' => $this->resource->customer->fullname, |
||
| 28 | ])->render(), |
||
| 29 | 'created_at' => $this->resource->created_at->translatedFormat('d F Y H:i:s'), |
||
|
|
|||
| 30 | 'schedule_date' => $this->resource->schedule_date ? $this->resource->schedule_date->translatedFormat('d F Y H:i:s') : trans('Unscheduled'), |
||
| 31 | 'status' => $this->resource->status->label, |
||
| 32 | ]; |
||
| 35 |