pingcrm/app/Http/Controllers/ReportsController.php

14 lines
198 B
PHP
Raw Permalink Normal View History

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