POST 405 (Method not allowed) when trying to post AJAX request - Laravel 4 POST 405 (Method not allowed) when trying to post AJAX request - Laravel 4 ajax ajax

POST 405 (Method not allowed) when trying to post AJAX request - Laravel 4


Wouldn't this be your issue?

Route::get('/ajax/populateApiAuth', 'ApiController@populateApiAuth');

You set the route up for GET requests, but you're trying to access it via a POST request.