2021-10-11 00:13:00 +00:00
|
|
|
<?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
|
2021-10-19 14:35:01 +00:00
|
|
|
* @property Carbon $created_at
|
|
|
|
* @property Carbon $updated_at
|
2021-10-11 00:13:00 +00:00
|
|
|
*
|
|
|
|
* @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'
|
|
|
|
];
|
|
|
|
}
|