pingcrm/app/Http/Controllers/DashboardController.php
2020-09-08 18:45:49 -04:00

13 lines
202 B
PHP

<?php
namespace App\Http\Controllers;
use Inertia\Inertia;
class DashboardController extends Controller
{
public function index()
{
return Inertia::render('Dashboard/Index');
}
}