EVOLUTION-MANAGER
Edit File: Notification.php
<?php namespace Illuminate\Notifications; use Illuminate\Queue\SerializesModels; class Notification { use SerializesModels; /** * The unique identifier for the notification. * * @var string */ public $id; /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn() { return []; } }