pingcrm/app/Http/Controllers/ReportsController.php

14 lines
198 B
PHP
Raw Normal View History

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