1 | <?php |
||
8 | class SectorEgovernment extends Model |
||
9 | { |
||
10 | use SoftDeletes; |
||
11 | |||
12 | public $timestamps = true; |
||
13 | |||
14 | protected $table = 'sector_egovernments'; |
||
15 | protected $dates = [ |
||
16 | 'deleted_at' |
||
17 | ]; |
||
18 | protected $fillable = [ |
||
19 | 'label', |
||
20 | 'description', |
||
21 | 'user_id', |
||
22 | 'link', |
||
23 | ]; |
||
24 | public function user() |
||
28 | } |
||
29 |