3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/app/Http/Controllers/Profile/HomeController.php

32 lines
515 B
PHP
Raw Permalink Normal View History

2020-02-26 13:59:58 +00:00
<?php
namespace App\Http\Controllers\Profile;
2020-02-26 13:59:58 +00:00
use App\Http\Controllers\Controller;
class HomeController extends Controller
2020-02-26 13:59:58 +00:00
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware(['auth', 'verified', '2fa']);
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
return view('profile.home');
2020-02-26 13:59:58 +00:00
}
2020-02-26 13:59:58 +00:00
}