notifications finish

This commit is contained in:
merdan 2022-07-06 16:52:14 +05:00
parent 437cf39bda
commit c44b659dd0
1 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,6 @@ namespace Sarga\Admin\Listeners;
use Illuminate\Contracts\Queue\ShouldQueue;
use Sarga\Admin\Events\OrderChangedEvent;
use Webkul\Notification\Repositories\NotificationRepository;
class Notification implements ShouldQueue
{
@ -15,6 +14,6 @@ class Notification implements ShouldQueue
'id' => $order->id,
'status' => 'item_cancelled',
];
event(new OrderChangedEvent);
event(new OrderChangedEvent($orderArray));
}
}