mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-10-29 03:57:46 +09:00
29 lines
501 B
PHP
29 lines
501 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\View\View;
|
|
|
|
class ImportController extends Controller
|
|
{
|
|
/**
|
|
* Instantiate a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->middleware('allowed');
|
|
}
|
|
|
|
/**
|
|
* Handle the incoming request.
|
|
*/
|
|
public function __invoke(Request $request): View
|
|
{
|
|
return view('items.import');
|
|
}
|
|
}
|