We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fea7726 commit aeeb20aCopy full SHA for aeeb20a
src/Models/MailatorSchedule.php
@@ -493,6 +493,10 @@ public function getReadableConditionAttribute(): string
493
$condition = $this->delay_minutes.' minute(s) ';
494
}
495
496
+ if ($this->delay_minutes < 1) {
497
+ return (string) __('immediate');
498
+ }
499
+
500
$condition .= $this->time_frame_origin." ".$this->timestamp_target?->copy()->format('m/d/Y h:i A');
501
502
return $condition;
0 commit comments