25 lines
545 B
PHP
25 lines
545 B
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
// use Modules\Lpj\Database\Factories\FotoObjekJaminanFactory;
|
|
|
|
class FotoObjekJaminan extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'foto_objek_jaminan';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $guarded = ['id'];
|
|
|
|
// protected static function newFactory(): FotoObjekJaminanFactory
|
|
// {
|
|
// // return FotoObjekJaminanFactory::new();
|
|
// }
|
|
}
|