From 350d7e29b5c2ef596248c498ea81a0cb5246339e Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 31 Jan 2019 13:26:43 -0700 Subject: [PATCH] Add DeckController --- app/Http/Controllers/DeckController.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 app/Http/Controllers/DeckController.php 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'); + } +}