create dashboard controller

This commit is contained in:
Geriano
2022-07-23 15:14:35 +07:00

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Inertia\Inertia;
class DashboardController extends Controller
{
/**
* @return \Illuminate\Http\Response
*/
public function index()
{
return Inertia::render('Dashboard');
}
}