Files
ntspi-app/app/Containers/Widget/Models/PageReferenceList.php
T
F4ilji c7a779d9aa refactor(models): replace HasFactory with HasContainerFactory across all models
Add static $factory property for Porto-style model factory resolution
2026-09-18 01:39:22 +05:00

20 lines
390 B
PHP
Executable File

<?php
namespace App\Containers\Widget\Models;
use App\Ship\Traits\HasContainerFactory;
use Illuminate\Database\Eloquent\Model;
class PageReferenceList extends Model
{
use HasContainerFactory;
protected static string $factory = \Database\Factories\PageReferenceListFactory::class;
protected $guarded = false;
protected $casts = [
'content' => 'array',
];
}