<?php
namespace App\Listeners;
use App\Events\OrderSaved;
use App\Models\User;
use App\Notifications\OrderSavedAdmin;
use Illuminate\Support\Facades\Notification;
class SendNotificationToAdmins
{
public function handle(OrderSaved $event)
{
$order = $event->order;
Notification::send(User::permission('manage all orders')->get(), new OrderSavedAdmin($order));
}
}