mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-02 03:16:27 -04:00
16 lines
251 B
PHP
16 lines
251 B
PHP
<?php
|
|
|
|
namespace Modules\PageBuilderPlus\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class GJSTemplate extends Model
|
|
{
|
|
protected $table = 'gjstemplates';
|
|
|
|
protected $fillable = [
|
|
'title',
|
|
'data'
|
|
];
|
|
}
|