Browse Source

Add DeckController

Daniel Supernault 6 năm trước cách đây
mục cha
commit
350d7e29b5
1 tập tin đã thay đổi với 24 bổ sung0 xóa
  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');
+    }
+}