migrate to gtea from bistbucket
This commit is contained in:
25
public/restaurant/Modules/Frontend/app/Models/Page.php
Normal file
25
public/restaurant/Modules/Frontend/app/Models/Page.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Frontend\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Page extends Model
|
||||
{
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = [
|
||||
'restaurant_id',
|
||||
'title',
|
||||
'slug',
|
||||
'type',
|
||||
'content',
|
||||
'meta_data',
|
||||
'seo_meta_keywords',
|
||||
'seo_meta_description',
|
||||
'page_status',
|
||||
'page_template',
|
||||
'author_id',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user