24 lines
606 B
PHP
24 lines
606 B
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Lpj\Database\Factories\LokasiUnitFactory;
|
|
|
|
class Lantai extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'lantai';
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = ['name', 'code', 'status', 'authorized_status', 'authorized_at', 'authorized_by', 'created_by', 'updated_by', 'deleted_by'];
|
|
|
|
protected static function newFactory(): LokasiUnitFactory
|
|
{
|
|
//return LokasiUnitFactory::new();
|
|
}
|
|
}
|