Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function toArray($request) |
||
17 | { |
||
18 | return [ |
||
19 | 'id' => $this->id, |
||
20 | 'deviceToken' => $this->device_token, |
||
21 | 'accessToken' => $this->access_token, |
||
22 | 'user' => new UserResource($this->whenLoaded('user')), |
||
23 | 'timeZone' => $this->time_zone, |
||
24 | 'createdAt' => $this->created_at, |
||
25 | 'updatedAt' => $this->updated_at, |
||
26 | ]; |
||
27 | } |
||
28 | } |
||
29 |