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

22 lines
488 B
PHP

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