feat(order): menambahkan format currecny di push notification

This commit is contained in:
Yoga Pangestu 2025-11-17 22:03:41 +07:00
parent 88217e548e
commit fb5e85d3c4

View File

@ -96,7 +96,7 @@ public function save()
PushNotification::whereIn('user_id', $userIds)->get(),
[
'title' => 'Order',
'body' => 'Ada order baru masuk dengan nominal '.$result['data']['total'],
'body' => 'Ada order baru masuk dengan nominal '.currency($result['data']['total'], 'Rp'),
'url' => route('studio.manage.order.index'),
],
);