middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index($component = "home") { return view('home', compact('component')); } public function show($group, $component, $id = "") { return view('home', compact('group', 'component', "id")); } }