mcstepp8 years agoLevel 5ReplyReport SpamSure. Show us the code for your routes and start from there. Like Reply
Mdp85 OP 8 years agoLevel 7ReplyReport SpamI'm using dingo/api, and this are my routes.php file: $api = app('Dingo\Api\Routing\Router'); $api->version('v1', function ($api) { $api->group(['middleware' => 'cors'], function ($api) { $api->post('register', 'App\Http\Controllers\RegistrationController@store'); }); }); Like Reply
mcstepp8 years agoLevel 5ReplyReport SpamAnd the url that you're making the POST request to? Maybe your RegistrationController too. Like Reply