1 | <?php |
||
26 | class Caldav extends Model |
||
27 | { |
||
28 | //TODO fillable and other fields |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $primaryKey = 'calendar_id'; |
||
34 | |||
35 | /** |
||
36 | * @var array |
||
37 | */ |
||
38 | protected $touches = ['calendar']; |
||
39 | |||
40 | /** |
||
41 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
42 | */ |
||
43 | 4 | public function Calendar() |
|
47 | |||
48 | //TODO remmeber to don't allow to change timelsot for a caldav claendar |
||
49 | |||
50 | /** |
||
51 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
52 | */ |
||
53 | public function Employee() |
||
57 | } |
||
58 |