xxxxxxxxxx
use Illuminate\Support\Facades\Notification;
use App\Notifications\Lead\NewLeadNotification;
public function send()
{
Notification::route('mail', ['email1@mail.com', 'email2@mail.com']) //Sending mail to subscribers
->notify(new NewLeadNotification());
}