Hello,
I have User model
public function sendPasswordResetNotification($token)
{
$this->notify(new ReminderNotification($token));
}
and the ReminderNotification in App/Notifications
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
class ReminderNotification extends Notification
{
use Queueable;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* 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)
{
dd($this->token);
return (new MailMessage)
->subject('Wisheek password reset')
->greeting('You are receiving this email because we received a password reset request for your account.')
->line('Click the button to rest your password')
->action('Reset password', env('APP_URL').'/password/reset/')
->line('Thank you for using our application!');
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
But as you see, if I want to access $token property of the class (which was sent as parameter in User.php model) it throws an error
Undefined property: App\Notifications\ReminderNotification::$token
Please help, what am I doing wrong?
The issue is that although you are passing your token to the notification class, you aren't doing anything with it in the constructor. You need to set up the property and then assign it when you pass it through.
// Class definition above
protected $token;
public function __construct($token) {
$this->token = $token
}
Then you will have access to your token property
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community