mirror of
				https://github.com/linuxserver/Heimdall.git
				synced 2025-10-31 21:17:44 +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');
 | |
|     }
 | |
| }
 |