Home > Enterprise >  Laravel 404 Error with parameter but without parameter it is working
Laravel 404 Error with parameter but without parameter it is working

Time:04-26

Route::prefix('admin')->group(function () { Route::get('/editcategory/{$id}', [CategoryContoller::class, 'edit'])->whereNumber('id')->name('editcategory'); });

This Code gives me a 404 Not Found. But without parameter page is showing.

CodePudding user response:

Try to remove the $ in the parameter.

Route::prefix('admin')->group(function () { 
    Route::get('/editcategory/{id}', 
         [CategoryContoller::class, 'edit'])
                    ->whereNumber('id')->name('editcategory'); 
});

CodePudding user response:

i think you most remove "$" from route

Route::get('/editcategory/{id}')
  • Related