update basic data surveyor
This commit is contained in:
23
app/Models/FasilitasObjek.php
Normal file
23
app/Models/FasilitasObjek.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\FasilitasObjekFactory;
|
||||
|
||||
class FasilitasObjek extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'fasilitas_objek';
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = ['code', 'name', 'status'];
|
||||
|
||||
// protected static function newFactory(): FasilitasObjekFactory
|
||||
// {
|
||||
// // return FasilitasObjekFactory::new();
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user