31 lines
660 B
PHP
31 lines
660 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\Admin;
|
|
|
|
use Illuminate\View\View;
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
use Pterodactyl\Services\Helpers\SoftwareVersionService;
|
|
|
|
class BaseController extends Controller
|
|
{
|
|
/**
|
|
* @var \Pterodactyl\Services\Helpers\SoftwareVersionService
|
|
*/
|
|
private $version;
|
|
|
|
/**
|
|
* BaseController constructor.
|
|
*/
|
|
public function __construct(SoftwareVersionService $version)
|
|
{
|
|
$this->version = $version;
|
|
}
|
|
|
|
/**
|
|
* Return the admin index view.
|
|
*/
|
|
public function index(): View
|
|
{
|
|
return view('admin.index', ['version' => $this->version]);
|
|
}
|
|
}
|