nanosanteservice/app/Models/NhYearsPricesGrid.php

43 lines
806 B
PHP

<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class NhYearsPricesGrid
*
* @property int $id
* @property int $nh_network_config_id
* @property float $min_age
* @property float $max_age
* @property float $markup_percentage
* @property Carbon $created_at
* @property Carbon $updated_at
*
* @package App\Models
*/
class NhYearsPricesGrid extends Model
{
protected $table = 'nh_years_prices_grid';
protected $casts = [
'nh_network_config_id' => 'int',
'min_age' => 'float',
'max_age' => 'float',
'markup_percentage' => 'float'
];
protected $fillable = [
'nh_network_config_id',
'min_age',
'max_age',
'markup_percentage'
];
}