mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add DeckController
This commit is contained in:
parent
d48f15a036
commit
350d7e29b5
1 changed files with 24 additions and 0 deletions
24
app/Http/Controllers/DeckController.php
Normal file
24
app/Http/Controllers/DeckController.php
Normal file
|
@ -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');
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue