25 lines
612 B
PHP
25 lines
612 B
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Lpj\Database\Factories\SpekBagunanAnalisaDetailFactory;
|
|
|
|
class SpekBagunanAnalisaDetail extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'spek_bagunan_analisa_detail';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = ['name', 'spek_bagunan_analisa_id', 'kategori'];
|
|
|
|
protected static function newFactory(): SpekBagunanAnalisaDetailFactory
|
|
{
|
|
//return SpekBagunanAnalisaDetailFactory::new();
|
|
}
|
|
}
|