1use Illuminate\Support\Facades\Http;
2// The retry method accepts two arguments:
3// (1st) the maximum number of times the request should be attempted
4// (2nd) the number of milliseconds that Laravel should wait in between attempts:
5$response = Http::retry(3, 100)->post(...);