Issues (27)

routes/web.php (1 issue)

Labels
Severity
1
<?php
2
3
use Illuminate\Support\Facades\Route;
0 ignored issues
show
The type Illuminate\Support\Facades\Route was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
4
use InShore\Bookwhen\Http\Controllers\AttachmentController;
5
use InShore\Bookwhen\Http\Controllers\BookwhenController;
6
use InShore\Bookwhen\Http\Controllers\ClassPassController;
7
use InShore\Bookwhen\Http\Controllers\EventController;
8
use InShore\Bookwhen\Http\Controllers\LocationController;
9
use InShore\Bookwhen\Http\Controllers\TicketController;
10
11
Route::get('/', [BookwhenController::class, 'index'])->name('index');
12
Route::get('/attachments', [AttachmentController::class, 'index'])->name('attachments.index');
13
Route::get('/attachments/{attachment}', [AttachmentController::class, 'show'])->name('attachments.show');
14
Route::get('/class-passes', [ClassPassController::class, 'index'])->name('class-passes.index');
15
Route::get('/class-passes/{classPass}', [ClassPassController::class, 'show'])->name('class-passes.show');
16
Route::get('/events', [EventController::class, 'index'])->name('events.index');
17
Route::get('/events/{event}', [EventController::class, 'show'])->name('events.show');
18
Route::get('/locations', [LocationController::class, 'index'])->name('locations.index');
19
Route::get('/locations/{location}', [LocationController::class, 'show'])->name('locations.show');
20
Route::get('/event-tickets/{eventId}', [TicketController::class, 'index'])->name('tickets.index');
21
Route::get('/tickets/{ticketId}', [TicketController::class, 'show'])->name('tickets.show');
22