Data API Fakestore di Laravel
//https://laravel.com/docs/9.x/http-client#guzzle-options
Route::get('/', function () {
$items = \Illuminate\Support\Facades\Http::get("https://fakestoreapi.com/products");
dd($items->collect());
return $items;
});
WinMaw