48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class Tourism
|
|
*
|
|
* @property $id
|
|
* @property $project_id
|
|
* @property $jenis_proyek
|
|
* @property $nib
|
|
* @property $created_at
|
|
* @property $updated_at
|
|
* @property $business_name
|
|
* @property $terbit_oss
|
|
* @property $status_penanaman_modal
|
|
* @property $business_form
|
|
* @property $uraian_resiko_proyek
|
|
* @property $project_name
|
|
* @property $business_scale_id
|
|
* @property $business_address
|
|
* @property $district_code
|
|
* @property $village_code
|
|
* @property $land_area
|
|
* @property $investment_amount
|
|
* @property $number_of_employee
|
|
* @property $business_type_id
|
|
*
|
|
* @package App
|
|
* @mixin \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
class Tourism extends Model
|
|
{
|
|
|
|
protected $perPage = 20;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = ['project_id', 'jenis_proyek', 'nib', 'business_name', 'terbit_oss', 'status_penanaman_modal', 'business_form', 'uraian_resiko_proyek', 'project_name', 'business_scale_id', 'business_address', 'district_code', 'village_code', 'land_area', 'investment_amount', 'number_of_employee', 'business_type_id'];
|
|
|
|
|
|
}
|