misc_pterodactyl-panel/app/Http/Controllers/Admin/BaseController.php

20 lines
356 B
PHP
Raw Normal View History

<?php
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Http\Controllers\Admin;
use Illuminate\View\View;
2016-12-07 22:46:38 +00:00
use Pterodactyl\Http\Controllers\Controller;
class BaseController extends Controller
{
2017-03-19 23:36:50 +00:00
/**
* Return the admin index view.
*
* @return \Illuminate\View\View
*/
public function index(): View
{
return view('templates/base.core');
}
}