nanosanteservice/app/Models/NhHealthCareSheetsPrescript...

38 lines
697 B
PHP
Raw Permalink 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;
use Illuminate\Database\Eloquent\Relations\Pivot;
2021-11-19 16:07:42 +00:00
/**
* Class NhHealthCareSheetsPrescription
*
* @property int $id
* @property int $sheet_id
* @property int $prescription_id
* @property Carbon $created_at
* @property Carbon $updated_at
*
* @package App\Models
*/
class NhHealthCareSheetsPrescription extends Pivot
2021-11-19 16:07:42 +00:00
{
protected $table = 'nh_health_care_sheets_prescriptions';
protected $casts = [
'sheet_id' => 'int',
'prescription_id' => 'int'
];
protected $fillable = [
'sheet_id',
'prescription_id'
];
}