Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 5 |
| CategoryResource | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
| toArray | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
|||
| <?php | |
| namespace App\Http\Resources; | |
| use Illuminate\Http\Resources\Json\JsonResource; | |
| class CategoryResource extends JsonResource | |
| { | |
| /** | |
| * Transform the resource into an array. | |
| * | |
| * @param \Illuminate\Http\Request $request | |
| * @return array | |
| */ | |
| public function toArray($request) | |
| { | |
| // return parent::toArray($request); | |
| return [ | |
| 'id' => $this->id, | |
| 'name' => $this->name, | |
| 'image' => $this->local, | |
| 'created_at' => \Carbon\Carbon::parse($this->created_at)->format('d/m/Y'), | |
| 'deleted_at' => $this->deleted_at, | |
| ]; | |
| } | |
| } |