File: /var/www/vhosts/uat-api.tsprojects.net/admin.plotterbox.tsprojects.net/app/Models/CmsPage.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class CmsPage extends Model
{
use HasFactory;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'tblCmsPages';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'type',
'display',
'uniqueType',
'created_at',
'updated_at',
'url',
];
}