This commit is contained in:
2025-09-25 03:41:13 +05:00
parent ae480cf2f6
commit 14312dc5f9

View File

@@ -75,38 +75,38 @@ class SendOrderCreatedNotification implements ShouldQueue
*/
public function sendSMSToStaff($order): void
{
$exists = DB::table('order_sent_notifications')
->where('order_id', $order->id)
->where('phone_number', orderAdminNumber())
->exists();
// $exists = DB::table('order_sent_notifications')
// ->where('order_id', $order->id)
// ->where('phone_number', orderAdminNumber())
// ->exists();
if (! $exists) {
DB::table('order_sent_notifications')
->insert([
'order_id' => $order->id,
'phone_number' => orderAdminNumber(),
]);
// if (! $exists) {
// DB::table('order_sent_notifications')
// ->insert([
// 'order_id' => $order->id,
// 'phone_number' => orderAdminNumber(),
// ]);
sendSMS(
phone: orderAdminNumber(),
message: sprintf(
'Täze sargyt: %s, eltip bermek: %s',
$order->id,
$order->shipping_method
)
);
// sendSMS(
// phone: orderAdminNumber(),
// message: sprintf(
// 'Täze sargyt: %s, eltip bermek: %s',
// $order->id,
// $order->shipping_method
// )
// );
Log::channel('order_sms_notification_sent_activity')
->info(sprintf('SMS_SENT_FOR_ORDER[id, phone]: %s, %s', $order->id, orderAdminNumber()));
// Log::channel('order_sms_notification_sent_activity')
// ->info(sprintf('SMS_SENT_FOR_ORDER[id, phone]: %s, %s', $order->id, orderAdminNumber()));
User::where('phone_number', orderAdminNumber())->first()->notify(
NovaNotification::make()
->message('Täze sargyt.')
->action('Gör', sprintf('/turkmenpostadmin/resources/orders/%s', $order->id))
->icon('download')
->type('info')
);
}
// User::where('phone_number', orderAdminNumber())->first()->notify(
// NovaNotification::make()
// ->message('Täze sargyt.')
// ->action('Gör', sprintf('/turkmenpostadmin/resources/orders/%s', $order->id))
// ->icon('download')
// ->type('info')
// );
// }
}
/**