-
Notifications
You must be signed in to change notification settings - Fork 144
Description
When I try to access the 'client/1/edit' it throws NotFoundHttpException.
The route:list shows the following routes
GET|HEAD | client/create | client..create | Modules\Client\Http\Controllers\ClientController@create
GET|HEAD | client/{} | client..show | Modules\Client\Http\Controllers\ClientController@show
PUT|PATCH | client/{} | client..update | Modules\Client\Http\Controllers\ClientController@update
DELETE | client/{} | client..destroy | Modules\Client\Http\Controllers\ClientController@destroy
GET|HEAD | client/{}/edit | client..edit | Modules\Client\Http\Controllers\ClientController@edit
The route is:
Route::group(['middleware' => 'web', 'prefix' => 'client', 'namespace' => 'Modules\Client\Http\Controllers'], function()
{
Route::resource('/', 'ClientController');
});