purityselect/app/Models/PatientLab.php
2024-10-25 01:05:27 +05:00

15 lines
220 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PatientLab extends Model
{
protected $table = "patient_labs";
protected $fillable = [
'patient_id',
'lab_id',
];
}