Files
lpj/app/Models/SifatBangunan.php
2024-10-16 08:50:11 +07:00

25 lines
510 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 = [];
protected static function newFactory(): SifatBangunanFactory
{
//return SifatBangunanFactory::new();
}
}