22 lines
355 B
PHP
22 lines
355 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Kecamatan extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'kecamatan';
|
|
|
|
protected $fillable = [
|
|
'kec_id',
|
|
'kec_name',
|
|
'kabkot_id',
|
|
'created_by',
|
|
'updated_by'
|
|
];
|
|
}
|