nanosanteservice/app/Models/NhAct.php

42 lines
720 B
PHP

<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class NhAct
*
* @property int $id
* @property int $nh_network_config_id
* @property string $code
* @property string $name
* @property string $billing_type
* @property string $authorization_type
* @property Carbon $created_at
* @property Carbon $updated_at
*
* @package App\Models
*/
class NhAct extends Model
{
protected $table = 'nh_acts';
protected $casts = [
'nh_network_config_id' => 'int'
];
protected $fillable = [
'nh_network_config_id',
'code',
'name',
'billing_type',
'authorization_type'
];
}