/
home
/
techb158
/
immovalet.com
/
platform
/
packages
/
widget
/
src
/
Models
/
/home/techb158/immovalet.com/platform/packages/widget/src/Models
mkdir
upload
Name
Size
Mode
Actions
Widget.php
491
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/packages/widget/src/Models/Widget.php
(491B)
<?php namespace Botble\Widget\Models; use Botble\Base\Models\BaseModel; class Widget extends BaseModel { /** * The database table used by the model. * * @var string */ protected $table = 'widgets'; /** * @var array */ protected $fillable = [ 'widget_id', 'sidebar_id', 'theme', 'position', 'data', ]; /** * @var array */ protected $casts = [ 'data' => 'json', ]; }
Save
cmd:
run