21 lines
340 B
PHP
21 lines
340 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Kabupaten extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'kabupaten';
|
|
|
|
protected $fillable = [
|
|
'kabkot_id',
|
|
'kabkot_name',
|
|
'created_by',
|
|
'updated_by'
|
|
];
|
|
}
|