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