walletservice/app/Models/Regulation.php

41 lines
765 B
PHP

<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Class Regulation
*
* @property int $id
* @property int $id_country
* @property float $montant_max_jour
* @property float $montant_max_hebdo
* @property float $montant_max_mensuel
*
* @package App\Models
*/
class Regulation extends Model
{
protected $table = 'regulations';
public $timestamps = false;
protected $casts = [
'id_country' => 'int',
'montant_max_jour' => 'float',
'montant_max_hebdo' => 'float',
'montant_max_mensuel' => 'float'
];
protected $fillable = [
'id_country',
'montant_max_jour',
'montant_max_hebdo',
'montant_max_mensuel'
];
}