Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function toArray($request) |
||
23 | { |
||
24 | $notification = (object) $this->data; |
||
|
|||
25 | $resource = [ |
||
26 | 'id' => $this->getKey(), |
||
27 | 'title' => $notification->title, |
||
28 | 'message' => $notification->message, |
||
29 | 'target' => $notification->target, |
||
30 | 'tag' => $notification->tag, |
||
31 | 'is_read' => isset($this->read_at) ? true : false, |
||
32 | ]; |
||
33 | |||
34 | return $resource; |
||
35 | } |
||
37 |