can you please check why this code is returning me empty result in laravel. i am trying to fetch nations name based upon nation id in teachers table.
public function edit(Teacher $teacher)
{
$teachers= DB::table('teachers','nations')
->join('nations', 'teachers.nation_id', '=', 'nations.id')
->select('teachers.*')
->where('teachers.id',$teacher->id)
->first();
return view('teachers.create',['teachers' => $teachers]);
}
dd($teacher->id)and see if you're getting id or not