action = $event->action; $this->listing_category = $listing_category; $this->request = $event->request; $this->event = $event; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->subject('ListingCategory Approved - ' . config('app.name')) ->view('property::listing_category.email.action', ['data' => $this->listing_category]); } /** * Get the notification's delivery channels. * * @param object $notifiable * @return array */ public function via(object $notifiable): array { return ['mail']; } }