Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 3 |
| Language | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
| toArray | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
| <?php | |
| namespace App\Http\Resources; | |
| use Illuminate\Http\Resources\Json\JsonResource; | |
| class Language 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, | |
| 'local' => $this->local, | |
| 'deleted_at' => (string) $this->deleted_at, | |
| ]; | |
| } | |
| } |