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]);
 | |
|     }
 | |
| }
 | 
