pingcrm/app/Http/Controllers/DashboardController.php
Jonathan Reinink 14192d0e46 Initial commit
2019-03-21 19:58:19 -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');
}
}