Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function toArray($request) |
||
20 | { |
||
21 | if (Str::of($this->imageable->discussable_type)->contains('Ministry')) { |
||
22 | $server = config('faithgen-sdk.ministries-server'); |
||
23 | } else { |
||
24 | $server = config('faithgen-sdk.users-server-server'); |
||
25 | } |
||
26 | |||
27 | return [ |
||
28 | 'id' => $this->id, |
||
29 | 'caption' => $this->caption, |
||
30 | 'comments' => $this->comments()->count(), |
||
31 | 'avatar' => ImageHelper::getImage('discussions', $this->resource, $server), |
||
32 | 'date' => Helper::getDates($this->created_at), |
||
33 | ]; |
||
34 | } |
||
35 | } |
||
36 |