Skip to content

Instantly share code, notes, and snippets.

@gpedro
Created November 28, 2018 21:31
Show Gist options
  • Save gpedro/c8692632cab0fc071f907ccb32119826 to your computer and use it in GitHub Desktop.
Save gpedro/c8692632cab0fc071f907ccb32119826 to your computer and use it in GitHub Desktop.
Notificação de acordo com o cadastro do usuário
<?php
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return $notifiable->use_fallback_mail ? [FallbackMailChannel::class] : ['mail'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment