laravue icon indicating copy to clipboard operation
laravue copied to clipboard

Add new user error 405

Open lucacalcaterra opened this issue 4 years ago • 2 comments

Hi, thanks for your poject, very good work !

When i add new user as admin receive "Request failed with status code 405".

Seems missing route post for create new user. Changed route , base api path, but nothing...

Can you give me a feedback ? Thanks . Luca

lucacalcaterra avatar Apr 29 '20 08:04 lucacalcaterra

This route worked for me:

Route::post('users', 'UserController@store');

jigzstar avatar May 04 '20 04:05 jigzstar

405 means method is not allowed. Please check your route table by:

php artisan route:list

and double check with the request sent from browser.

tuandm avatar Jun 22 '20 04:06 tuandm