| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function toArray($request) |
||
| 18 | { |
||
| 19 | return [ |
||
| 20 | 'id' => $this->id, |
||
|
|
|||
| 21 | 'name' => $this->name, |
||
| 22 | 'description' => $this->description, |
||
| 23 | 'comments' => $this->comments()->count(), |
||
| 24 | 'date' => Helper::getDates($this->created_at), |
||
| 25 | 'images' => [ |
||
| 26 | 'count' => $this->images()->count(), |
||
| 27 | ], |
||
| 28 | 'avatar' => ImageHelper::getImage('gallery', $this->images()->latest()->first(), config('faithgen-sdk.ministries-server')), |
||
| 29 | ]; |
||
| 32 |