Skip to content

notification generated uuid #48304

Answered by chuckrincon
hamada-emam asked this question in Q&A
Discussion options

You must be logged in to vote

Hey ✋🏻

You can't stop it because it's too deep in the core to override the default behavior.
Instead, you could listen to the Illuminate\Notifications\Events\NotificationSent event and update the notification with your custom ID.

EventServiceProvider

use App\Listeners\UpdateNotification;
use Illuminate\Notifications\Events\NotificationSent;
 
/**
 * The event listener mappings for the application.
 *
 * @var array
 */
protected $listen = [
    NotificationSent::class => [
        UpdateNotification::class,
    ],
];

UpdateNotification

/**
 * Handle the event.
 */
public function handle(NotificationSent $event): void
{
    $event->notification->update(['id' => Model::getCustomKey()])
}

Wit…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@hamada-emam
Comment options

Answer selected by hamada-emam
Comment options

You must be logged in to vote
1 reply
@hamada-emam
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants