pingcrm/app/Http/Controllers/DashboardController.php

14 lines
205 B
PHP

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