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