13 lines
198 B
PHP
13 lines
198 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Inertia\Inertia;
|
|
|
|
class ReportsController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return Inertia::render('Reports/Index');
|
|
}
|
|
}
|