mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
29 lines
619 B
PHP
29 lines
619 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\Base;
|
|
|
|
use Illuminate\View\View;
|
|
use Illuminate\View\Factory as ViewFactory;
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
/**
|
|
* IndexController constructor.
|
|
*/
|
|
public function __construct(
|
|
protected ServerRepositoryInterface $repository,
|
|
protected ViewFactory $view
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Returns listing of user's servers.
|
|
*/
|
|
public function index(): View
|
|
{
|
|
return view('templates/base.core');
|
|
}
|
|
}
|