cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
26 lines
613 B
PHP
26 lines
613 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\Admin;
|
|
|
|
use Illuminate\View\View;
|
|
use Illuminate\View\Factory as ViewFactory;
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
use Pterodactyl\Services\Helpers\SoftwareVersionService;
|
|
|
|
class BaseController extends Controller
|
|
{
|
|
/**
|
|
* BaseController constructor.
|
|
*/
|
|
public function __construct(private SoftwareVersionService $version, private ViewFactory $view)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Return the admin index view.
|
|
*/
|
|
public function index(): View
|
|
{
|
|
return $this->view->make('admin.index', ['version' => $this->version]);
|
|
}
|
|
}
|