mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-07-06 04:34:53 +08:00
15 lines
243 B
PHP
15 lines
243 B
PHP
<?php
|
|
|
|
namespace Convoy\Http\Controllers\Admin;
|
|
|
|
use Convoy\Http\Controllers\Controller;
|
|
use Inertia\Inertia;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return Inertia::render('admin/Index');
|
|
}
|
|
}
|