56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProposalHistory extends Model
|
|
{
|
|
protected $fillable = [
|
|
'project_title',
|
|
'project_type_id',
|
|
'project_type_fa',
|
|
'office_id',
|
|
'office_fa',
|
|
'province_id',
|
|
'province_fa',
|
|
'axis_type_id',
|
|
'axis_type_fa',
|
|
'axis_name',
|
|
'followup_priority_project_id',
|
|
'followup_priority_project',
|
|
'priority_project',
|
|
'priority_project_fa',
|
|
'status_id',
|
|
'status_fa',
|
|
'operation_type_id1',
|
|
'operation_type_fa1',
|
|
'operation_type_unit1',
|
|
'operation_type_amount1',
|
|
'operation_type_id2',
|
|
'operation_type_fa1',
|
|
'operation_type_unit1',
|
|
'operation_type_amount2',
|
|
'operation_type_id3',
|
|
'operation_type_fa1',
|
|
'operation_type_unit1',
|
|
'operation_type_amount3',
|
|
'operation_type_id4',
|
|
'operation_type_fa1',
|
|
'operation_type_unit1',
|
|
'operation_type_amount4',
|
|
'start_lat',
|
|
'end_lat',
|
|
'start_lng',
|
|
'end_lng',
|
|
'user_id',
|
|
'user_description',
|
|
'national_credit',
|
|
'province_credit',
|
|
'created_at_fa',
|
|
'updated_at_fa',
|
|
'unique_code',
|
|
'proposal_id'
|
|
];
|
|
}
|