nanosanteservice/app/Models/NhInsurancesPayment.php

42 lines
765 B
PHP
Raw Normal View History

<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class NhInsurancesPayment
*
* @property int $id
* @property string $insurance_subscription_id
* @property string $insured_id
* @property float $amount
* @property string $reason
* @property string $insurance_details
* @property Carbon $created_at
* @property Carbon $updated_at
*
* @package App\Models
*/
class NhInsurancesPayment extends Model
{
protected $table = 'nh_insurances_payments';
protected $casts = [
'amount' => 'float'
];
protected $fillable = [
'insurance_subscription_id',
'insured_id',
'amount',
'reason',
'insurance_details'
];
}