mckenziearts / laravel-notify
Flexible flash notifications for Laravel
Fund package maintenance!
mckenziearts
www.paypal.com/paypalme/monneyarthur
Installs: 1 006 637
Dependents: 5
Suggesters: 0
Security: 0
Stars: 1 697
Watchers: 31
Forks: 198
Open Issues: 14
pkg:composer/mckenziearts/laravel-notify
Requires
- php: ^8.3
- illuminate/contracts: ^11.0|^12.0
- illuminate/session: ^11.0|^12.0
- illuminate/support: ^11.0|^12.0
- mckenziearts/blade-untitledui-icons: v1.4.0
Requires (Dev)
- laravel/pint: ^1.25.0
- mockery/mockery: ^1.6
- orchestra/testbench: ^10.6.0
- pestphp/pest: ^3.8.4
- pestphp/pest-plugin-type-coverage: ^3.6.1
- phpstan/phpstan: ^2.1.27
- rector/rector: ^2.1.7
- 3.x-dev
- v3.0
- 2.x-dev
- v2.7
- v2.6
- v2.5
- v2.4
- v2.3
- v2.2
- v2.1
- v2.0
- 1.x-dev
- v1.1.2
- v1.1.1
- v1.1
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0
- dev-dependabot/npm_and_yarn/js-dependencies-653647d47c
- dev-dependabot/github_actions/actions/setup-node-6
- dev-dependabot/github_actions/stefanzweifel/git-auto-commit-action-7
- dev-dependabot/github_actions/actions/cache-5
- dev-master
- dev-feat/add-new-position-config
This package is auto-updated.
Last update: 2025-12-17 15:15:06 UTC
README
Introduction
Laravel Notify is a lightweight Laravel package for displaying backend-driven notifications in your application.
Installation
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
Option 1: With Tailwind CSS & Alpinejs
If your project already uses Tailwind CSS 4.x, follow these steps to integrate Laravel Notify directly into your build process.
Step 1: Configure Tailwind to scan package files
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";
Step 2: Import the JavaScript
In your resources/js/app.js, import Alpine.js if you haven't already:
import Alpine from 'alpinejs' window.Alpine = Alpine Alpine.start()
Step 3: Add the notification component to your layout
In your main Blade layout file (e.g., resources/views/layouts/app.blade.php):
<!-- Add notification component before closing body tag --> <x-notify::notify />
Step 4: Build your assets
npm run build
# or for development
npm run dev
✅ Done! Tailwind will automatically generate CSS for all the notification styles used in the package.
Option 2: Without Tailwind CSS
If you don't use Tailwind CSS in your project, you can use the pre-compiled CSS and JavaScript files.
Add directives to your layout
<!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.
Usage
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(); }
Type of notifications
Laravel Notify actually display 5 types of notifications
toastnotification, (The default notification for Laravel Notify)
notify() ->success() ->title('Welcome to Laravel Notify ⚡️') ->send();
connectifynotification, example of basic usage
notify() ->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
smileynotification, displays a simple custom toast notification using the smiley (😊) emoticon
notify() ->model(NotificationModel::Smiley) ->success() ->title('You are successfully reconnected') ->send();
emotifynotification, displays a simple custom toast notification using a vector emoticon
notify() ->model(NotificationModel::Emotify) ->success() ->title('You are awesome, your data was successfully created') ->send();
Setting a duration
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),
Adding Actions to Notifications
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.
Basic Usage
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();
URL Actions (Navigation)
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();
Action Actions (Execution)
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.
Complete Example
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'); }
Custom Styling
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');
Important Notes
- Mutual Exclusivity: You cannot use both
action()andurl()on the same action. Choose one or the other. - Method Restriction: The
method()function can only be used withaction(). Using it withurl()will throw an exception. - New Tab Restriction: The
openUrlInNewTab()function can only be used withurl(). Using it withaction()will throw an exception. - Auto-close: When an action is executed successfully, the notification automatically closes.
- CSRF Protection: Action requests automatically include CSRF tokens and proper headers.
- Supported Models: Actions work with
Toast,Connect,Smiley, andEmotifynotification models only.
Preset Notifications
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
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'.
