Files
lpj/app/Models/SifatBangunan.php
2024-10-16 16:41:39 +07:00

25 lines
534 B
PHP

<?php
namespace Modules\Lpj\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Modules\Lpj\Database\Factories\SifatBangunanFactory;
class SifatBangunan extends Model
{
use HasFactory;
protected $table = 'sifat_bangunan';
/**
* The attributes that are mass assignable.
*/
protected $fillable = ['code', 'name', 'status'];
protected static function newFactory(): SifatBangunanFactory
{
//return SifatBangunanFactory::new();
}
}