Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Notifications;
  4.  
  5. use Illuminate\Bus\Queueable;
  6. use Illuminate\Notifications\Notification;
  7. use Illuminate\Contracts\Queue\ShouldQueue;
  8. use Illuminate\Notifications\Messages\MailMessage;
  9.  
  10. class AddedEvdeptTeam extends Notification
  11. {
  12. use Queueable;
  13.  
  14. /**
  15. * Create a new notification instance.
  16. *
  17. * @return void
  18. */
  19. public function __construct()
  20. {
  21. //
  22. }
  23.  
  24. /**
  25. * Get the notification's delivery channels.
  26. *
  27. * @param mixed $notifiable
  28. * @return array
  29. */
  30. public function via($notifiable)
  31. {
  32. return ['mail', 'database'];
  33. }
  34.  
  35. /**
  36. * Get the mail representation of the notification.
  37. *
  38. * @param mixed $notifiable
  39. * @return \Illuminate\Notifications\Messages\MailMessage
  40. */
  41. public function toMail($notifiable)
  42. {
  43. return (new MailMessage)
  44. ->line('You have been added to the Event Department!')
  45. ->action('Go to Event Department Page', url('/events'))
  46. ->line('Thank you for using our application!');
  47. }
  48.  
  49. /**
  50. * Get the array representation of the notification.
  51. *
  52. * @param mixed $notifiable
  53. * @return array
  54. */
  55. public function toArray($notifiable)
  56. {
  57. //
  58. }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement