Skip to content

Commit

Permalink
Fixing router
Browse files Browse the repository at this point in the history
  • Loading branch information
axeloz committed May 25, 2023
1 parent 5d9c89e commit c663155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
Route::middleware(['can.upload'])->group(function() {
Route::get('/', [WebController::class, 'homepage'])->name('homepage');
Route::get('/new', [WebController::class, 'newBundle'])->name('bundle.new');
Route::post('/new', [WebController::class, 'newBundle'])->name('bundle.new');

Route::prefix('/upload/{bundle}')->controller(UploadController::class)->name('upload.')->group(function() {
Route::get('/', 'createBundle')->name('create.show');
Expand Down

0 comments on commit c663155

Please sign in to comment.