mckenziearts/laravel-notify
Lightweight Laravel package for backend-driven toast notifications. Install via Composer, publish config/assets, drop in the Blade component, and trigger success/error/info messages from your app. Works great with Tailwind CSS + Alpine.js.
Laravel Notify is a lightweight Laravel package for displaying backend-driven notifications in your application.
You can install the package using composer
composer require mckenziearts/laravel-notify
You can publish the configuration file and assets by running:
php artisan vendor:publish --tag=notify-assets
php artisan vendor:publish --tag=notify-config
If your project already uses Tailwind CSS 4.x, follow these steps to integrate Laravel Notify directly into your build process.
In your resources/css/app.css, add the package's Blade files to Tailwind's content sources using the @source directive:
@import "tailwindcss";
@source "../../vendor/mckenziearts/laravel-notify/resources/views/**/*.blade.php";
In your resources/js/app.js, import Alpine.js if you haven't already:
import Alpine from 'alpinejs'
window.Alpine = Alpine
Alpine.start()
In your main Blade layout file (e.g., resources/views/layouts/app.blade.php):
<!-- Add notification component before closing body tag -->
<x-notify::notify />
npm run build
# or for development
npm run dev
✅ Done! Tailwind will automatically generate CSS for all the notification styles used in the package.
If you don't use Tailwind CSS in your project, you can use the pre-compiled CSS and JavaScript files.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel Notify</title>
<!-- Add Laravel Notify CSS -->
@notifyCss
</head>
<body>
<!-- Add notification component -->
<x-notify::notify />
<!-- Add Laravel Notify JavaScript -->
@notifyJs
</body>
</html>
✅ Done! The pre-compiled assets will be loaded from your public/vendor/mckenziearts/laravel-notify/dist/ directory.
Within your controllers, before you perform a redirect call the notify method with a title.
public function store()
{
notify()
->success()
->title('⚡️ Laravel Notify is awesome!')
->send();
return back();
}
Laravel Notify actually display 5 types of notifications
toast notification, (The default notification for Laravel Notify)notify()
->success()
->title('Welcome to Laravel Notify ⚡️')
->send();
connectify notification, example of basic usagenotify()
->model(NotificationModel::Connect)
->success()
->title('Connection Found')
->message('Success Message Here')
->send();
drakify (😎) notification, displays an alert only// For success alert
notify()
->model(NotificationModel::Drake)
->success()
->send();
// or
notify()
->model(NotificationModel::Drake)
->error()
->send(); // for error alert
smiley notification, displays a simple custom toast notification using the smiley (😊) emoticonnotify()
->model(NotificationModel::Smiley)
->success()
->title('You are successfully reconnected')
->send();
emotify notification, displays a simple custom toast notification using a vector emoticonnotify()
->model(NotificationModel::Emotify)
->success()
->title('You are awesome, your data was successfully created')
->send();
By default, notifications are shown for 5 seconds before they're automatically closed. You may customize this using the duration() method:
notify()
->success()
->title('Saved successfully')
->duration(3000) // 3 seconds
->send();
If you'd like to make a notification stay open until the user manually closes it, you can set a very long duration:
notify()
->warning()
->title('Important notice')
->duration(999999) // ~16 minutes
->send();
You can also configure a default duration for all notifications in the config/notify.php file:
'timeout' => env('NOTIFY_TIMEOUT', 5000),
You can add interactive actions to your notifications, allowing users to perform tasks directly from the notification. Actions support both navigation (redirecting to a URL) and execution (calling a controller action).
Note: Actions are supported only for the following notification models: Toast, Connect, Smiley, and Emotify. The Drake model does not support actions.
use Mckenziearts\Notify\Action\NotifyAction;
notify()
->success()
->title('User deleted successfully')
->actions([
NotifyAction::make()
->label('Undo')
->action(route('users.restore', $user->id)),
NotifyAction::make()
->label('View All')
->url(route('users.index')),
])
->send();
Use the url() method to redirect users to another page. This creates a simple link (GET request):
NotifyAction::make()
->label('View details')
->url(route('users.show', $user->id));
You can open URLs in a new tab using the openUrlInNewTab() method:
NotifyAction::make()
->label('Read documentation')
->url('https://laravel.com/docs')
->openUrlInNewTab();
Use the action() method to execute a controller action. This sends an HTTP request (POST by default) to your controller:
NotifyAction::make()
->label('Restore')
->action(route('users.restore', $user->id));
You can specify the HTTP method using the method() method:
// DELETE request
NotifyAction::make()
->label('Delete permanently')
->action(route('users.force-delete', $user->id))
->method('DELETE');
// PUT request
NotifyAction::make()
->label('Update status')
->action(route('users.activate', $user->id))
->method('PUT');
If you don't specify a method, it defaults to POST.
public function destroy(User $user)
{
$user->delete();
notify()
->success()
->title('User deleted')
->message('The user has been moved to trash')
->actions([
NotifyAction::make()
->label('Undo')
->action(route('users.restore', $user->id))
->method('POST'),
NotifyAction::make()
->label('View Trash')
->url(route('users.trash'))
->openUrlInNewTab(),
])
->send();
return redirect()->route('users.index');
}
You can customize the appearance of action buttons using the classes() method:
NotifyAction::make()
->label('Delete')
->action(route('users.delete', $user->id))
->method('DELETE')
->classes('text-red-600 hover:text-red-500 font-bold');
action() and url() on the same action. Choose one or the other.method() function can only be used with action(). Using it with url() will throw an exception.openUrlInNewTab() function can only be used with url(). Using it with action() will throw an exception.Toast, Connect, Smiley, and Emotify notification models only.If you have a specific notification that is used across multiple different places in your system, you can define it as a preset notification in your config file. This makes it easier to maintain commonly used notifications in one place. Read how to define preset messages in the Config section below.
As an example, to use a preset notification you have defined called 'common-notification', use the following:
notify()->preset('common-notification')->send();
You can override any of the values that are set in the config if you need to. For example, this could be useful if you have a common notification across, but you want to change the icon in one particular place that it's used without having to manually write out a new notification.
To do this, simply pass in an array that has the key of the attribute that you want to override and the value you want to override it with.
As an example, we could override the 'title' of our 'common-notification' by using the following:
notify()->preset('common-notification', ['title' => 'This is the overridden title'])->send();
Config file are located at config/notify.php after publishing NotifyServiceProvider.
You can define preset notifications in the config file using the following structure:
use Mckenziearts\Notify\Enums\NotificationType;
use Mckenziearts\Notify\Enums\NotificationModel;
'preset-messages' => [
'user-updated' => [
'type' => NotificationType::Success,
'model' => NotificationModel::Toast,
'title' => 'User Updated',
'message' => 'The user has been updated successfully.',
],
'user-deleted' => [
'type' => NotificationType::Success,
'model' => NotificationModel::Toast,
'title' => 'User Deleted',
'message' => 'The user has been deleted successfully.',
],
],
The example above shows the config for two preset notifications: 'user-updated' and 'user-deleted'.
How can I help you explore Laravel packages today?