middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { $pasien = Pasien::all(); return view('home', compact('pasien')); } }