| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| 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 | 'name' => $this->name, |
||
| 23 | 'published' => $this->published, |
||
| 24 | 'location' => $this->location, |
||
| 25 | 'description' => $this->description, |
||
| 26 | 'start' => Helper::getDates($this->start), |
||
| 27 | 'end' => Helper::getDates($this->end), |
||
| 28 | 'is_past' => Carbon::parse($this->end)->isPast(), |
||
| 29 | 'avatar' => ImageHelper::getImage('events', $this->image, config('faithgen-sdk.ministries-server')), |
||
| 30 | 'date' => Carbon::parse($this->start)->format('Y/m/d'), |
||
| 31 | ]; |
||
| 34 |