News

Send Toast Notifications in Your Livewire Application with Toaster

Published
Send Toast Notifications in Your Livewire Application with Toaster image

This Toaster package for Livewire creates beautiful toast notifications for your Laravel Livewire applications. It provides a seamless experience allowing you to send a toast to the UI from a standard controller or a Livewire component. You don't have to worry about session flashing; you dispatch your toast message:

This package provides a Toaster facade that you can use to send toast messages to the UI quickly:

Toaster::success('User created!');

Let's say that you have a controller creating a database record, and afterward, you want to redirect them. You can use this library to send a toast message by chaining it onto a redirect:

public function store(Request $request): RedirectResponse
{
// controller code...
// Send a toast after a redirect 🤩
return Redirect::route('dashboard')
->info('Company created!');
}

Lastly, you can also send toast messages from the front end:

<button @click="Toaster.success('Form submitted!')">
Submit
</button>

You can learn more about this package, get full installation instructions, and view the source code on GitHub.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article
Statamic Mailables Viewer Previews Laravel Emails in the Control Panel image

Statamic Mailables Viewer Previews Laravel Emails in the Control Panel

Read article
Laravel Tackle: Run an AI Coding Agent in Your Laravel App image

Laravel Tackle: Run an AI Coding Agent in Your Laravel App

Read article
Queue::forward(): Reroute Laravel Queues in One Place image

Queue::forward(): Reroute Laravel Queues in One Place

Read article
Laravel Read-Through Filesystem: Lazy Storage Migration image

Laravel Read-Through Filesystem: Lazy Storage Migration

Read article