47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Location\Models\Province;
|
|
|
|
// use Modules\Lpj\Database\Factories\KJPPFactory;
|
|
|
|
class KJPP extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
// Define the table if not using default table naming
|
|
protected $table = 'kjpp';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = [
|
|
'code',
|
|
'name',
|
|
'jenis_kantor',
|
|
'nomor_ijin_usaha',
|
|
'province_code',
|
|
'city_code',
|
|
'district_code',
|
|
'village_code',
|
|
'address',
|
|
'postal_code',
|
|
'nomor_telepon_kantor',
|
|
'email_kantor',
|
|
'nama_pimpinan',
|
|
'nomor_hp_pimpinan',
|
|
'nama_pic_reviewer',
|
|
'nomor_hp_pic_reviewer',
|
|
'nama_pic_admin',
|
|
'nomor_hp_pic_admin',
|
|
'nama_pic_marketing',
|
|
'nomor_hp_pic_marketing',
|
|
'ijin_usaha_id',
|
|
'jenis_aset_id',
|
|
'attachment'
|
|
];
|
|
}
|