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