| 1 | <?php |
||
| 11 | class Folder extends Model |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The attributes that should be mutated to dates. |
||
| 15 | * |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $dates = ['VerstuurdOp', 'Begin', 'Einde']; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get the url associated with the model. |
||
| 22 | * |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function getUrl() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Define a relationship. |
||
| 32 | * |
||
| 33 | * @return mixed |
||
| 34 | */ |
||
| 35 | public function message() |
||
| 39 | } |
||
| 40 |