20 lines
311 B
PHP
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'
|
|
];
|
|
}
|