Files
sibedas/app/Models/SpatialPlanning.php
2025-02-19 12:08:18 +07:00

20 lines
311 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SpatialPlanning extends Model
{
protected $table = "spatial_plannings";
protected $fillable = [
'name',
'kbli',
'kegiatan',
'luas',
'lokasi',
'nomor',
'sp_date'
];
}