mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 11:16:49 -04:00
19 lines
358 B
PHP
19 lines
358 B
PHP
<?php
|
|
|
|
namespace Modules\Setup\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class Department extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = [];
|
|
|
|
protected static function newFactory()
|
|
{
|
|
return \Modules\Setup\Database\factories\DepartmentFactory::new();
|
|
}
|
|
}
|