15 lines
220 B
PHP
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',
|
|
];
|
|
}
|