update form menu surveyor
This commit is contained in:
23
app/Models/SpekBagunanAnalisa.php
Normal file
23
app/Models/SpekBagunanAnalisa.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Lpj\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Modules\Lpj\Database\Factories\SpekBagunanAnalisaFactory;
|
||||
|
||||
class SpekBagunanAnalisa extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'spek_bagunan_analisa';
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = ['kategori', 'analisa_tanah_bagunan_id'];
|
||||
|
||||
protected static function newFactory(): SpekBagunanAnalisaFactory
|
||||
{
|
||||
//return SpekBagunanAnalisaFactory::new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user