nanosanteservice/app/Models/NhHealthCareSheetsExam.php

37 lines
599 B
PHP

<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class NhHealthCareSheetsExam
*
* @property int $id
* @property int $sheet_id
* @property int $exam_id
* @property Carbon $created_at
* @property Carbon $updated_at
*
* @package App\Models
*/
class NhHealthCareSheetsExam extends Model
{
protected $table = 'nh_health_care_sheets_exams';
protected $casts = [
'sheet_id' => 'int',
'exam_id' => 'int'
];
protected $fillable = [
'sheet_id',
'exam_id'
];
}