Files
wticreatorstudio/Modules/PageBuilderPlus/Entities/GJSPage.php
T
2024-02-12 22:54:20 -05:00

24 lines
387 B
PHP

<?php
namespace Modules\PageBuilderPlus\Entities;
use Illuminate\Database\Eloquent\Model;
class GJSPage extends Model
{
protected $table = 'gjspages';
protected $fillable = [
'title',
'slug',
'data',
'html',
'css',
'js',
'assets',
'pages',
'styles',
'global_css'
];
}