menerapkan feature approve permohonan (blm selesai)

This commit is contained in:
Andy Chaerudin
2024-08-28 15:34:50 +07:00
committed by rahmatrafli1
parent 2f3110ba5d
commit ab2c34da7a
7 changed files with 678 additions and 270 deletions

View 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\PermohonanJaminanFactory;
class PermohonanJaminan extends Model
{
use HasFactory;
protected $table = 'dokumen_jaminan';
/**
* The attributes that are mass assignable.
*/
// protected $fillable = [];
protected $guarded = [];
protected static function newFactory(): PermohonanJaminanFactory
{
//return PermohonanJaminanFactory::new();
}
}