Files
lpj/app/Models/BentukTanah.php
2024-10-16 08:50:11 +07:00

24 lines
499 B
PHP

<?php
namespace Modules\Lpj\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Modules\Lpj\Database\Factories\BentukTanahFactory;
class BentukTanah extends Model
{
use HasFactory;
protected $table = 'bentuk_tanah';
/**
* The attributes that are mass assignable.
*/
protected $fillable = [];
protected static function newFactory(): BentukTanahFactory
{
//return BentukTanahFactory::new();
}
}