Skip to content

Commit

Permalink
Removed location show route as it is not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
cp6 committed Oct 3, 2023
1 parent d12665a commit 11900fe
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion routes/web/location.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
Route::get('/locations', [LocationController::class, 'index'])->name('location.index');
Route::get('/locations/create', [LocationController::class, 'create'])->name('location.create');
Route::post('/locations', [LocationController::class, 'store'])->name('location.store');
Route::get('/locations/{location}', [LocationController::class, 'show'])->name('location.show');
Route::get('/locations/{location}/edit', [LocationController::class, 'edit'])->name('location.edit');
Route::patch('/locations/{location}', [LocationController::class, 'update'])->name('location.update');
Route::delete('/locations/{location}', [LocationController::class, 'destroy'])->name('location.destroy');
Expand Down

0 comments on commit 11900fe

Please sign in to comment.