|
@@ -0,0 +1,24 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace App\Http\Controllers;
|
|
|
+
|
|
|
+use Illuminate\Http\Request;
|
|
|
+
|
|
|
+class DeckController extends Controller
|
|
|
+{
|
|
|
+ public function __construct()
|
|
|
+ {
|
|
|
+ $this->middleware('auth');
|
|
|
+ }
|
|
|
+
|
|
|
+ public function home()
|
|
|
+ {
|
|
|
+ return view('deck.index');
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public function insights()
|
|
|
+ {
|
|
|
+ return view('deck.insights.index');
|
|
|
+ }
|
|
|
+}
|