<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Organ extends Model
{
public function speciality()
{
return $this->BelongsToMany(
speciality::class,
'specialities__organs',
'organ_id',
'speciality_id'
);
}
public function patientEducation()
{
return $this->BelongsToMany(
PatientEducation::class,
'patient_educations__organs',
'organ_id',
'patient_education_id'
);
}
}