I have routes laravel like this :
Route::prefix(\'member\')->middleware(\'auth\')->group(function(){ Route::prefix(\'purchase\')->group(functio
For the resource controller, it is pre-defined by the Laravel, which contain only the 7 method.
Shown at below table.
So, if you want any other method, you have to definde by youself.
php artisan route:list
You can use this to check all the route you defined.