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 →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article