I am trying to issue a simple AJAX request to populate a menu in Laravel, however, I am having a lot of trouble with getting it to work properly.
I am not sure what
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.