PHPackages                             rayhan-bapari/notyfyre - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. rayhan-bapari/notyfyre

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

rayhan-bapari/notyfyre
======================

A beautiful toast notification package for Laravel with modern design and title-only notifications

v2.0.1(6mo ago)037MITPHPPHP ^8.0|^8.1|^8.2|^8.3|^8.4

Since Aug 8Pushed 6mo agoCompare

[ Source](https://github.com/rayhan-bapari/notyfyre)[ Packagist](https://packagist.org/packages/rayhan-bapari/notyfyre)[ RSS](/packages/rayhan-bapari-notyfyre/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (4)Versions (6)Used By (0)

Notyfyre - Beautiful Toast Notifications for Laravel
====================================================

[](#notyfyre---beautiful-toast-notifications-for-laravel)

 [![Latest Stable Version](https://camo.githubusercontent.com/8a5b9140718d23b7cea289977bb77c365b0c08312020f5ae0307f33d6ed64ff5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72617968616e2d6261706172692f6e6f7479667972652e737667)](https://camo.githubusercontent.com/8a5b9140718d23b7cea289977bb77c365b0c08312020f5ae0307f33d6ed64ff5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72617968616e2d6261706172692f6e6f7479667972652e737667) [![License](https://camo.githubusercontent.com/3853665b45f2c858ff5b6bd905c70f7b8f4a0c8ee6477009549f1f67082aace3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f72617968616e2d6261706172692f6e6f7479667972652e737667)](https://camo.githubusercontent.com/3853665b45f2c858ff5b6bd905c70f7b8f4a0c8ee6477009549f1f67082aace3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f72617968616e2d6261706172692f6e6f7479667972652e737667) [![PHP Version](https://camo.githubusercontent.com/29f637a0bad6c96d2028798318635bc39ba96343cf2b9994cbc524429ae87a3d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f72617968616e2d6261706172692f6e6f7479667972652e737667)](https://camo.githubusercontent.com/29f637a0bad6c96d2028798318635bc39ba96343cf2b9994cbc524429ae87a3d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f72617968616e2d6261706172692f6e6f7479667972652e737667) [![Total Downloads](https://camo.githubusercontent.com/7abf480ac16ee553b6ad5f3cac1f8adfddffc83dbfb2cd598e33bb5b1da2d653/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72617968616e2d6261706172692f6e6f7479667972652e737667)](https://camo.githubusercontent.com/7abf480ac16ee553b6ad5f3cac1f8adfddffc83dbfb2cd598e33bb5b1da2d653/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72617968616e2d6261706172692f6e6f7479667972652e737667)

A beautiful, lightweight toast notification package for Laravel that provides an elegant way to display notifications to your users.

Features
--------

[](#features)

- 🎨 Beautiful, customizable toast notifications
- 🚀 Easy to use both in PHP and JavaScript
- 📱 Responsive design
- ⚡ Lightweight and fast
- 🎯 Multiple notification types (success, error, warning, info)
- 🔧 Highly configurable
- 📍 Multiple positioning options
- ⏱️ Auto-close with progress bar at bottom
- 🎭 Smooth animations
- ✨ Clean, minimal design with title only

Requirements
------------

[](#requirements)

- PHP 8.0 to 8.4
- Laravel 9.\* to 12.\*

Installation
------------

[](#installation)

You can install the package via Composer:

```
composer require rayhan-bapari/notyfyre
```

### Publish Configuration (Optional)

[](#publish-configuration-optional)

```
php artisan vendor:publish --provider="RayhanBapari\Notyfyre\NotyfyreServiceProvider" --tag="notyfyre-config"
```

### Publish Assets

[](#publish-assets)

```
php artisan vendor:publish --provider="RayhanBapari\Notyfyre\NotyfyreServiceProvider" --tag="notyfyre-assets"
```

### Publish Views (Optional)

[](#publish-views-optional)

```
php artisan vendor:publish --provider="RayhanBapari\Notyfyre\NotyfyreServiceProvider" --tag="notyfyre-views"
```

Quick Setup
-----------

[](#quick-setup)

Add the following directives to your main layout file (e.g., `resources/views/layouts/app.blade.php`):

```

    @notyfyreStyles

    @notyfyreScripts

```

Usage
-----

[](#usage)

### In Controllers (PHP)

[](#in-controllers-php)

```
