nanosanteservice/app/Models/NhInsurancesSubscriptionsHi...

45 lines
946 B
PHP
Raw Permalink Normal View History

<?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 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',
2021-11-19 16:07:42 +00:00
'insurance_subscription_state',
'created_at',
'updated_at'
];
}