@extends('notify::layout.app') @section('content')
Version 2.0

Notify for Laravel

Version 2 is Here 🤩 ! Laravel Notify is a package that lets you add custom notifications to your project. A diverse range of notification design with TailwindCSS and TailwindUI.

Connectity Notification

Connectity Notification can be used to notify your users that they no longer have an internet connection to perform the action they started.

Success Notification

From your controller, call the flash method with a message and success type.

                            connectify('success', 'Network Found', 'Laravel Notify v2 is insane 🔥 !');
                        

Network Found

Laravel Notify v2 is insane 🔥 !

Danger Notification

From your controller, call the flash method with a message and danger type.

                            connectify('error', 'Network Not Found', 'Connection could not be established. Please try again!');
                        

Network Not Found

Connection could not be established. Please try again!

Toast Notification

Toast Notification can be used to inform the user after the actions he has performed (CRUD actions). From your application, call the flash method with a message and type.

  • Success Toast
    notify()->success('You have successfully logged in');
  • Warning Toast
    notify()->warning('Please charge your mobile phone');
  • Info Toast
    notify()->info('You have new subscribers');
  • Danger Toast
    notify()->error('Some error here please try again');

Success

You have successfully logged in.

Warning

Please charge your mobile phone.

Info

You have new subscribers.

Danger

Some error here please try again

Drake Notification

Drake Notification can be used to notify your users that they have a bad action request.

Success Notification

From your controller, call the flash method with a message and success type.

                            drakify('success');
                        

Success

Danger Notification

From your controller, call the flash method with a message and danger type.

                            drakify('error');
                        

Error

Smiley Notification

Smiley notification can be user to display notification messages to users who like smileys.

Success Notification

From your controller, call the flash method with a message and success type.

                            smilify('success', 'Laravel Notify v2 is insane 🔥 !');
                        
👍

Success !

Laravel Notify v2 is insane 🔥 !

Danger Notification

From your controller, call the flash method with a message and danger type.

                            smilify('error', 'Bad request appear please try again');
                        
🙅🏽‍♂️

Error !

Bad request appear please try again

Emoticon Notification

Emoticon notification can be user to display notification messages to users who like emoticons :D.

Success Notification

From your controller, call the flash method with a message and success type.

                            emotify('success', 'You are awesome. Your data successfully saved. Great Job :) !');
                        

You are awesome. Your data successfully saved. Great Job :) !

Danger Notification

From your controller, call the flash method with a message and danger type.

                            emotify('error', 'It seems your file is too big, try reducing the file size and try again.');
                        

It seems your file is too big, try reducing the file size and try again.

Dark Mode

Some awesome stuff. Active dark mode by update your configuration at config/notify.php and set NOTIFY_THEME to 'dark'.

                        'theme' => env('NOTIFY_THEME', 'dark'),
                    
  • Connectity Notification

    Network Found

    Laravel Notify v2 is insane 🔥 !

  • Toast Notification

    Success

    Laravel Notify v2 is insane 🔥 !

  • Smiley Notification

    👍

    Success !

    Laravel Notify v2 is insane 🔥 !

@endsection