23 lines
492 B
PHP
23 lines
492 B
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Lpj\Database\Factories\GolonganMasySekitarFactory;
|
|
|
|
class GolonganMasySekitar extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = [];
|
|
|
|
protected static function newFactory(): GolonganMasySekitarFactory
|
|
{
|
|
//return GolonganMasySekitarFactory::new();
|
|
}
|
|
}
|