nanosanteservice/app/Models/NhMonthsPricesGrid.php

40 lines
738 B
PHP
Raw Permalink Normal View History

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