Add SMS bulk delay configuration and validate coupon phone function

This commit is contained in:
Mekan1206
2026-06-03 20:57:54 +05:00
parent 275ee63ffb
commit c74330cfaf
18 changed files with 1637 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Enums;
enum SmsSendStatus: string
{
case Pending = 'pending';
case Sent = 'sent';
case Failed = 'failed';
case SkippedInvalid = 'skipped_invalid';
}