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

19 lines
366 B
PHP

<?php
namespace Modules\FrontendCMS\Entities;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Policy extends Model
{
use HasFactory;
protected $guarded = ['id'];
protected static function newFactory()
{
return \Modules\FrontendCMS\Database\factories\PolicyFactory::new();
}
}