| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function toArray($request) |
||
| 18 | { |
||
| 19 | // return parent::toArray($request); |
||
| 20 | return [ |
||
| 21 | 'tip_id' => $this->tip_id, |
||
| 22 | 'subject' => $this->subject, |
||
| 23 | 'description' => Str::words($this->description, 50), |
||
| 24 | 'created_at' => Carbon::parse($this->created_at)->format('M d, Y'), |
||
| 25 | 'system_types' => $this->SystemTypes, |
||
| 26 | ]; |
||
| 29 |