partial update spatial plannings crud

This commit is contained in:
arifal
2025-02-19 12:08:18 +07:00
parent e8da7193ef
commit 54146c8c08
6 changed files with 217 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?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'
];
}