50 lines
1.0 KiB
PHP
50 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class NhNetworksConfig
|
|
*
|
|
* @property int $id
|
|
* @property int $network_id
|
|
* @property string $provider_billing_period
|
|
* @property float $max_number_of_beneficiaries
|
|
* @property float $age_limit_of_child_beneficiary
|
|
* @property string $support_type
|
|
* @property float $percentage_insurer
|
|
* @property float $percentage_insured
|
|
* @property Carbon $updated_at
|
|
* @property Carbon $created_at
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class NhNetworksConfig extends Model
|
|
{
|
|
protected $table = 'nh_networks_configs';
|
|
|
|
protected $casts = [
|
|
'network_id' => 'int',
|
|
'max_number_of_beneficiaries' => 'float',
|
|
'age_limit_of_child_beneficiary' => 'float',
|
|
'percentage_insurer' => 'float',
|
|
'percentage_insured' => 'float'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'network_id',
|
|
'provider_billing_period',
|
|
'max_number_of_beneficiaries',
|
|
'age_limit_of_child_beneficiary',
|
|
'support_type',
|
|
'percentage_insurer',
|
|
'percentage_insured'
|
|
];
|
|
}
|