Laravel Http::get not working on controller
I have the Http request in my controller: $url = url('/api/list-professional'); $professionals = Http::get($url); These two lines work perfectly fine when I use them in my phpUnit Tests, But when I use them inside a controller it just gets a…