35 lines
680 B
PHP
35 lines
680 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Consultation extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $fillable = [
|
|
'patient_id',
|
|
'doctor_id',
|
|
'consultation_date',
|
|
'consultation_time',
|
|
'location',
|
|
'consultation_status',
|
|
];
|
|
|
|
public function patient()
|
|
{
|
|
return $this->belongsTo(User::class, 'patient_id');
|
|
}
|
|
|
|
public function doctor()
|
|
{
|
|
return $this->belongsTo(User::class, 'doctor_id');
|
|
}
|
|
|
|
public function result()
|
|
{
|
|
return $this->hasOne(Result::class, 'consultation_id');
|
|
}
|
|
}
|