mirror of https://github.com/pixelfed/pixelfed.git
25 lines
359 B
PHP
25 lines
359 B
PHP
|
<?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');
|
||
|
}
|
||
|
}
|