mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-07-01 05:14:20 +08:00
27 lines
548 B
PHP
27 lines
548 B
PHP
<?php
|
|
|
|
namespace Convoy\Http\Controllers\Base;
|
|
|
|
use Illuminate\View\View;
|
|
use Illuminate\View\Factory as ViewFactory;
|
|
use Convoy\Http\Controllers\Controller;
|
|
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
/**
|
|
* IndexController constructor.
|
|
*/
|
|
public function __construct(
|
|
protected ViewFactory $view
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Returns listing of user's servers.
|
|
*/
|
|
public function index(): View
|
|
{
|
|
return $this->view->make('app');
|
|
}
|
|
} |