Files
Heimdall/app/Http/Controllers/HomeController.php
2024-02-16 21:13:14 +00:00

28 lines
475 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\RedirectResponse;
class HomeController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
$this->middleware('auth');
}
/**
* Show the application dashboard.
*/
public function index(): RedirectResponse
{
return redirect()->route('dash');
}
}