42 lines
796 B
PHP
42 lines
796 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 $health_care_sheet_id
|
||
|
* @property int|null $nh_validating_agent_id
|
||
|
* @property string $state
|
||
|
* @property Carbon $created_at
|
||
|
* @property Carbon $updated_at
|
||
|
*
|
||
|
* @package App\Models
|
||
|
*/
|
||
|
class NhHealthCareSheetsHistory extends Model
|
||
|
{
|
||
|
protected $table = 'nh_health_care_sheets_history';
|
||
|
|
||
|
protected $casts = [
|
||
|
'nh_validating_agent_id' => 'int'
|
||
|
];
|
||
|
|
||
|
protected $fillable = [
|
||
|
'action',
|
||
|
'health_care_sheet_id',
|
||
|
'nh_validating_agent_id',
|
||
|
'state',
|
||
|
'created_at',
|
||
|
'updated_at'
|
||
|
];
|
||
|
}
|