| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class Ad extends Model |
||
| 25 | { |
||
| 26 | protected $fillable = ['title', 'description', 'img_url', 'price']; |
||
| 27 | // Hide those attributes when calling a ->toArray() on the object |
||
| 28 | protected $hidden = ['id', 'img_url', 'platforms']; |
||
| 29 | |||
| 30 | public $timestamps = false; |
||
| 31 | |||
| 32 | public function platforms() |
||
| 35 | } |
||
| 36 | |||
| 37 | public function getFormattedStringAttribute() |
||
| 45 |