| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function toArray($request) |
||
| 18 | { |
||
| 19 | return [ |
||
| 20 | 'id' => $this->id, |
||
| 21 | 'caption' => $this->caption, |
||
| 22 | 'comments_count' => $this->comments()->count(), |
||
| 23 | 'date' => Helper::getDates($this->created_at), |
||
| 24 | 'avatar' => ImageHelper::getImage('testimonies', $this->resource, config('faithgen-sdk.ministries-server')), |
||
| 25 | ]; |
||
| 26 | } |
||
| 27 | } |
||
| 28 |