mirror of
https://github.com/pelican-dev/panel.git
synced 2025-06-05 18:58:59 +02:00
15 lines
260 B
PHP
15 lines
260 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\Admin;
|
|
|
|
use Illuminate\View\View;
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
|
|
class BaseController extends Controller
|
|
{
|
|
public function index(): View
|
|
{
|
|
return view('templates/base.core');
|
|
}
|
|
}
|