4

Is there a maximum Length of time i can delay a Laravel Job? I need to delay a job for up to 14 days, and i can't find any documentation about delay length.

$job = (new SendReminderEmail($user))->delay(89000);

is this ok?

user2834482
  • 437
  • 2
  • 6
  • 14

1 Answers1

1

Why not use Carbon and Queue::later

$date = Carbon::now()->addMinutes(20160);

Queue::later($date, 'SendReminderEmail@send', array('user' => $user));
drmarvelous
  • 1,663
  • 10
  • 18