| 1 | <?php |
||
| 12 | class Attendance extends Model implements ShouldBeTranslatable |
||
| 13 | {
|
||
| 14 | /** |
||
| 15 | * The attributes that should be mutated to dates. |
||
| 16 | * |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $dates = ['Start', 'Eind', 'Afspraak.Start', 'Afspraak.Einde']; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Get the url associated with the model. |
||
| 23 | * |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getUrl() |
||
| 30 | } |
||
| 31 |