37 lines
726 B
PHP
37 lines
726 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Result extends Model
|
|
{
|
|
protected $table = 'result';
|
|
|
|
protected $fillable = [
|
|
'patient_id',
|
|
'doctor_id',
|
|
'consultation_id',
|
|
'jarak_lari',
|
|
'sleeptime',
|
|
'food',
|
|
'unrecommended_food',
|
|
'notes',
|
|
];
|
|
|
|
public function patient()
|
|
{
|
|
return $this->belongsTo(User::class, 'patient_id');
|
|
}
|
|
|
|
public function doctor()
|
|
{
|
|
return $this->belongsTo(User::class, 'doctor_id');
|
|
}
|
|
|
|
public function consultation()
|
|
{
|
|
return $this->belongsTo(Consultation::class, 'consultation_id');
|
|
}
|
|
} |