peliprint/app/Http/Controllers/Base/IndexController.php

33 lines
841 B
PHP
Raw Normal View History

<?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;
use Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Client\BlueprintClientLibrary;
class IndexController extends Controller
{
/**
* IndexController constructor.
*/
public function __construct(
protected ServerRepositoryInterface $repository,
protected ViewFactory $view,
private BlueprintClientExtensionLibrary $blueprint
) {
}
/**
* Returns listing of user's servers.
*/
public function index(): View
{
return $this->view->make('templates/base.core', [
'blueprint' => $this->blueprint,
]);
}
}