mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00

* update composer.lock * run pint * fix phpstan * update migrations (sqlite `dropForeign`) * fix migrations * Reset these back for now * Alphabetize the rules * run `php artisan filament:upgrade` --------- Co-authored-by: Lance Pioch <git@lance.sh>
24 lines
463 B
PHP
24 lines
463 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Base;
|
|
|
|
use Illuminate\View\View;
|
|
use Illuminate\View\Factory as ViewFactory;
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
/**
|
|
* IndexController constructor.
|
|
*/
|
|
public function __construct(protected ViewFactory $view) {}
|
|
|
|
/**
|
|
* Returns listing of user's servers.
|
|
*/
|
|
public function index(): View
|
|
{
|
|
return view('templates/base.core');
|
|
}
|
|
}
|