25 lines
543 B
PHP
25 lines
543 B
PHP
<?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();
|
|
}
|
|
}
|