diff --git a/app/Http/Controllers/DeckController.php b/app/Http/Controllers/DeckController.php new file mode 100644 index 000000000..b18dbdcb0 --- /dev/null +++ b/app/Http/Controllers/DeckController.php @@ -0,0 +1,24 @@ +middleware('auth'); + } + + public function home() + { + return view('deck.index'); + } + + + public function insights() + { + return view('deck.insights.index'); + } +}