mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-10-29 03:57:46 +09:00
28 lines
475 B
PHP
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');
|
|
}
|
|
}
|