Merge remote-tracking branch 'composer/feature/senior-officer' into staging
# Conflicts: # app/Http/Controllers/SurveyorController.php # resources/views/surveyor/index.blade.php
This commit is contained in:
25
app/Models/Perizinan.php
Normal file
25
app/Models/Perizinan.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\PerizinanFactory;
|
||||
|
||||
class Perizinan extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'perizinan';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $guarded = ['id'];
|
||||
|
||||
|
||||
// protected static function newFactory(): PerizinanFactory
|
||||
// {
|
||||
// // return PerizinanFactory::new();
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user