mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 14:16:57 -04:00
28 lines
577 B
PHP
28 lines
577 B
PHP
<?php
|
|
|
|
namespace Modules\PageBuilderPlus\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class GJSWidget extends Model
|
|
{
|
|
protected $table = 'gjswidgets';
|
|
|
|
protected $fillable = [
|
|
'gid',
|
|
'label',
|
|
'media',
|
|
'category',
|
|
'tooltip',
|
|
'blade'
|
|
];
|
|
|
|
public static $rules = [
|
|
'gid' => 'required|string',
|
|
'label' => 'required|string',
|
|
'category' => 'nullable|string',
|
|
'tooltip' => 'nullable|string'
|
|
];
|
|
}
|