Send notifications to non-users of your application in Laravel

1 · Amit Merchant · June 23, 2021, 6:22 a.m.
Typically, when you send notifications from your Laravel app, the notifications would be attached to the users of your application in most of the scenarios. Sending notifications to non-users Multiple emails at once Emails with names Channels other than email For instance, if you want to send notifications to your users, you can add the Illuminate\Notifications\Notifiable trait to your App\Models\User model like so. <?php namespace App\Models; use Illuminate\Foundation\Auth\User as Authen...