Hi, I'm trying to use notifications from laravel in my panel. This is my call:
$order->mechanic->notify(new OrderAssigned($order, Auth::user()));
As you can see, i have an OrderAssigned which extends a Notification. How can I use this to send a notification in filament?
Is this even possible?