![мессенджеры](https://habrastorage.org/r/w120/webt/5a/e0/d3/5ae0d37581f08339067757.png)
Мессенджеры
0
Вклад в тег
class User extends Eloquent
{
/**
* @return \Illuminate\Database\Eloquent\Relations\HasOne
*/
public function profile()
{
if ($this->role == 'doctor') {
return $this->hasOne('App\Doctor', 'user_id', 'id')
->withDefault();
}
if ($this->role == 'pacient') {
return $this->hasOne('App\Pacient', 'user_id', 'id')
->withDefault();
}
return null;
}
}