Моя структура таблицы выглядит следующим образом:
farmers
id
name
education_id (used to capture max education)
educations (names of the education levels like BS / MS / PhD etc.)
id
name
Я попытался следующий код с ошибкой -
In farmers model (app/fermers.php) I added this code:
public function education()
{
return $this->hasOne(Educations::class);
}
Как мне настроить отношения?