nanosanteservice/app/Models/NhHealthCareInstitution.php

42 lines
706 B
PHP
Raw Normal View History

2021-11-19 16:07:42 +00:00
<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class NhHealthCareInstitution
*
* @property int $id
* @property int $network_id
* @property string $code
* @property string $name
* @property string $phone
* @property string $email
* @property Carbon $created_at
* @property Carbon $updated_at
*
* @package App\Models
*/
class NhHealthCareInstitution extends Model
{
protected $table = 'nh_health_care_institutions';
protected $casts = [
'network_id' => 'int'
];
protected $fillable = [
'network_id',
'code',
'name',
'phone',
'email'
];
}