laravue
laravue copied to clipboard
Add new user error 405
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
This route worked for me:
Route::post('users', 'UserController@store');
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.