2015-12-06 18:58:49 +00:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
namespace Pterodactyl\Http\Controllers\Admin;
|
|
|
|
|
2017-12-15 03:05:26 +00:00
|
|
|
use Illuminate\View\View;
|
2016-12-07 22:46:38 +00:00
|
|
|
use Pterodactyl\Http\Controllers\Controller;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
|
|
|
class BaseController extends Controller
|
|
|
|
{
|
2017-03-19 23:36:50 +00:00
|
|
|
/**
|
|
|
|
* Return the admin index view.
|
|
|
|
*/
|
2017-12-15 03:05:26 +00:00
|
|
|
public function index(): View
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2020-08-21 03:50:29 +00:00
|
|
|
return view('templates/base.core');
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|
|
|
|
}
|