Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Last active November 19, 2021 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/1253fea20fba0274236ed4e083db78df to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/1253fea20fba0274236ed4e083db78df to your computer and use it in GitHub Desktop.
Notificación usuarios
php artisan make:notification HelloUser
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class HelloUser extends Notification implements ShouldQueue // <--- importante
{
use Queueable;
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->subject("Hello User")
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment