use Illuminate\Notifications\Notification;
use NotificationChannels\ZipWhip\ZipWhipMessage;
use NotificationChannels\ZipWhip\ZipWhipChannel;
class AccountApproved extends Notification
{
public function via($notifiable)
{
return [ZipWhipChannel::class];
}
public function toZipWhip($notifiable)
{
return (new ZipWhipMessage())
->content("Your {$notifiable->service} account was approved!");
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.