mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 04:46:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			505 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			505 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Admin;
 | |
| 
 | |
| use Illuminate\View\View;
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Services\Helpers\SoftwareVersionService;
 | |
| 
 | |
| class BaseController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * BaseController constructor.
 | |
|      */
 | |
|     public function __construct(private SoftwareVersionService $version)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Return the admin index view.
 | |
|      */
 | |
|     public function index(): View
 | |
|     {
 | |
|         return view('admin.index', ['version' => $this->version]);
 | |
|     }
 | |
| }
 | 
