45 lines
980 B
PHP
45 lines
980 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class NhInsurancesSubscriptionsHistory
|
|
*
|
|
* @property int $id
|
|
* @property string $action
|
|
* @property string $insurance_subscription_id
|
|
* @property int|null $agent_id
|
|
* @property int|null $nh_validating_agent_id
|
|
* @property string $insurance_subscription_state
|
|
* @property string $insurance_subscription
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class NhInsurancesSubscriptionsHistory extends Model
|
|
{
|
|
protected $table = 'nh_insurances_subscriptions_history';
|
|
|
|
protected $casts = [
|
|
'agent_id' => 'int',
|
|
'nh_validating_agent_id' => 'int'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'action',
|
|
'insurance_subscription_id',
|
|
'agent_id',
|
|
'nh_validating_agent_id',
|
|
'insurance_subscription_state',
|
|
'insurance_subscription'
|
|
];
|
|
}
|