1 | <?php |
||
2 | |||
3 | use Illuminate\Support\Facades\Route; |
||
4 | use Laravel\Nova\Http\Requests\NovaRequest; |
||
5 | |||
6 | Route::get('/', function (NovaRequest $request) { |
||
0 ignored issues
–
show
|
|||
7 | return inertia('NavigaAdPreview'); |
||
8 | }); |
||
9 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.