42 lines
902 B
PHP
42 lines
902 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 $nh_validating_doctor_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 = [
|
||
|
'nh_validating_doctor_id' => 'int'
|
||
|
];
|
||
|
|
||
|
protected $fillable = [
|
||
|
'action',
|
||
|
'insurance_subscription_id',
|
||
|
'nh_validating_doctor_id',
|
||
|
'insurance_subscription_state',
|
||
|
'insurance_subscription'
|
||
|
];
|
||
|
}
|