findAll(); // check if there's only one podcast to redirect user to it if (count($all_podcasts) == 1) { return redirect()->route('podcast', [$all_podcasts[0]->name]); } // default behavior: list all podcasts on home page $data = ['podcasts' => $all_podcasts]; return view('home', $data); } }