pingcrm/app/Http/Controllers/DashboardController.php

14 lines
205 B
PHP
Raw Normal View History

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