Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function toArray($request) |
||
19 | { |
||
20 | return [ |
||
21 | 'id' => $this->id, |
||
|
|||
22 | 'title' => $this->title, |
||
23 | 'preacher' => [ |
||
24 | 'name' => $this->preacher, |
||
25 | 'avatar' => ImageHelper::getImage('sermons', $this->image, config('faithgen-sdk.ministries-server')), |
||
26 | ], |
||
27 | 'date' => Helper::getDates(Carbon::parse($this->date)), |
||
28 | 'comments' => [ |
||
29 | 'count' => number_format($this->comments()->count()), |
||
30 | ], |
||
34 |