update form menu surveyor
This commit is contained in:
24
app/Models/RuteJaminan.php
Normal file
24
app/Models/RuteJaminan.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Lpj\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Modules\Lpj\Database\Factories\RuteJaminanFactory;
|
||||
|
||||
class RuteJaminan extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'rute_jaminan';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $fillable = ['name_rute', 'foto_jaminan_id', 'foto_rute'];
|
||||
|
||||
protected static function newFactory(): RuteJaminanFactory
|
||||
{
|
||||
//return RuteJaminanFactory::new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user