3
0
Fork 0

Added Shows, ActionFoto's and Attraction Status

This commit is contained in:
BuildTools 2020-02-27 00:42:36 +01:00
parent b105bd7db7
commit ad320963fc
30 changed files with 1190 additions and 503 deletions

View file

@ -1,30 +0,0 @@
<?php
namespace App\Http\Controllers\Panel;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class AccountController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware(['auth', 'verified', '2fa']);
}
/**
* Show the application dashboard.
*
* @param Request $request
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
return view('account');
}
}