mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-09-23 21:13:12 -04:00
22 lines
488 B
PHP
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();
|
|
}
|
|
}
|