get(); // $peternak = DB::table('peternak')->get(); // return view('backend.peternak.index',compact('peternak')); return view('penyuluh.tutorial',compact('tutorial'))->with('tutorial', $tutorial); } public function detail($id) { $tutorial = DB::table('tutorial')->where('id_tutorial',$id)->first(); return view('penyuluh.detailtutorial',compact('tutorial')); } }