mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-07-02 06:24:33 +08:00
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return Inertia::render('admin/Index');
|
|
}
|
|
}
|