| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 18 | public function toArray($request) |
||
| 19 | { |
||
| 20 | return [ |
||
| 21 | 'id' => $this->id, |
||
|
|
|||
| 22 | 'caption' => $this->caption, |
||
| 23 | 'comments' => $this->comments()->count(), |
||
| 24 | 'avatar' => ImageHelper::getImage('gallery', $this->resource, config('faithgen-sdk.ministries-server')), |
||
| 25 | 'date' => Helper::getDates($this->created_at), |
||
| 26 | ]; |
||
| 29 |