| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function toArray($request) |
||
| 17 | { |
||
| 18 | return [ |
||
| 19 | 'id' => $this->id, |
||
| 20 | 'title' => $this->title, |
||
| 21 | // 'comments_count' => $this->comments()->count(), |
||
| 22 | 'approved' => (bool) $this->approved, |
||
| 23 | 'user' => new User($this->user), |
||
| 24 | 'date' => Helper::getDates($this->created_at), |
||
| 25 | ]; |
||
| 26 | } |
||
| 27 | } |
||
| 28 |