26 lines
445 B
PHP
26 lines
445 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Modules\Frontend\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class CMSSection extends Model
|
||
|
|
{
|
||
|
|
protected $fillable = [
|
||
|
|
'restaurant_id',
|
||
|
|
'name',
|
||
|
|
'serial',
|
||
|
|
'title',
|
||
|
|
'description',
|
||
|
|
'image',
|
||
|
|
'status',
|
||
|
|
'created_at',
|
||
|
|
'updated_at',
|
||
|
|
'deleted_at',
|
||
|
|
];
|
||
|
|
|
||
|
|
public const TABLE_NAME = 'c_m_s_sections';
|
||
|
|
|
||
|
|
protected $table = self::TABLE_NAME;
|
||
|
|
}
|