Support the ongoing development of Laravel.io →
Requests Mail Queues

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?

Last updated 2 years ago.
0

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

Last updated 8 years ago.
0

Of course... rookie mistake Thank you!!

0

Sign in to participate in this thread!

Eventy

Your banner here too?

TorchSK torchsk Joined 17 Apr 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.