24 lines
396 B
PHP
24 lines
396 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Modules\Frontend\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class AboutUs extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'about_us';
|
||
|
|
|
||
|
|
public const TABLE_NAME = 'about_us';
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'restaurant_id',
|
||
|
|
'title',
|
||
|
|
'description',
|
||
|
|
'image',
|
||
|
|
'status',
|
||
|
|
'created_by',
|
||
|
|
'created_at',
|
||
|
|
'updated_at',
|
||
|
|
];
|
||
|
|
}
|