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