menerapkan feature approve permohonan (blm selesai)
This commit is contained in:
23
app/Models/PermohonanJaminan.php
Normal file
23
app/Models/PermohonanJaminan.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\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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user