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:
Daeng Deni Mardaeni
2025-01-03 18:03:08 +07:00
26 changed files with 4935 additions and 3054 deletions

25
app/Models/Perizinan.php Normal file
View 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();
// }
}