Browse Source

Add DeckController

Daniel Supernault 6 years ago
parent
commit
350d7e29b5
1 changed files with 24 additions and 0 deletions
  1. 24 0
      app/Http/Controllers/DeckController.php

+ 24 - 0
app/Http/Controllers/DeckController.php

@@ -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');
+    }
+}