1 | <?php |
||
9 | class Desiratum extends Model |
||
10 | { |
||
11 | use Nameable, StatefulTrait; |
||
12 | |||
13 | protected $fillable = [ |
||
14 | 'torn', 'name', |
||
15 | ]; |
||
16 | |||
17 | //TODO falta la relació completa, falta la classe Timeslot. Traits |
||
18 | /** |
||
19 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
20 | */ |
||
21 | public function timeslots() |
||
25 | } |
||
26 |