1 | <?php |
||
11 | class Grade extends Model |
||
12 | { |
||
13 | /** |
||
14 | * The primary key for the model. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $primaryKey = 'CijferId'; |
||
19 | |||
20 | /** |
||
21 | * The attributes that should be mutated to dates. |
||
22 | * |
||
23 | * @var array |
||
24 | */ |
||
25 | protected $dates = ['DatumIngevoerd']; |
||
26 | |||
27 | /** |
||
28 | * Get the url associated with the model. |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getUrl() |
||
36 | |||
37 | /** |
||
38 | * Define a relationship. |
||
39 | * |
||
40 | * @return mixed |
||
41 | */ |
||
42 | public function info() |
||
46 | } |
||
47 |