Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function toArray($request) |
||
16 | { |
||
17 | return [ |
||
18 | 'id' => $this->resource->hashed_id, |
||
19 | 'name' => $this->resource->name, |
||
20 | 'email' => $this->resource->email, |
||
21 | 'position' => $this->resource->position, |
||
22 | 'subject' => $this->resource->subject, |
||
23 | 'body' => $this->resource->body, |
||
24 | 'createdAt' => $this->resource->created_at, |
||
25 | 'createdAtForHumans' => $this->resource->created_at->diffForHumans(), |
||
26 | ]; |
||
29 |