my route
Route::post('register', function()
{
return "POST SUCCESS!";
});
works fine if I chane it to "get". As soon as I change it to post (and use postman to actually send a post request) I get an error 500. Its driving me crazy and I cant find the answer..
There is also nothing in the php error log... o_0