Closed ketan32 closed 3 years ago
In /routes/backend/auth.php file, in the below line:
/routes/backend/auth.php
Route::resource('permission', 'PermissionController', ['except' => ['show']]);
Need to correct the controller name as:
Route::resource('permission', 'PermissionsController', ['except' => ['show']]);
With this change, it will able to find the correct controller class.
In
/routes/backend/auth.php
file, in the below line:Route::resource('permission', 'PermissionController', ['except' => ['show']]);
Need to correct the controller name as:
Route::resource('permission', 'PermissionsController', ['except' => ['show']]);
With this change, it will able to find the correct controller class.