broker->type; $followers = $broker->followers()->with('user')->get(); $followers->map(function (Customer $customer) use ($deal) { \Log::info('dump', [$customer]); \Log::info("Sending notification to {$customer->user->name}"); $customer->user->notify(new NewDealNotification($deal)); }); } }