PHPackages                             jaghoub/izitools - 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. jaghoub/izitools

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

jaghoub/izitools
================

professional notifications and modals from izimodal + izitosat for Laravel

0.0.1(8y ago)073MITPHPPHP ^5.3.3 || ^7.0

Since Jun 27Pushed 8y ago1 watchersCompare

[ Source](https://github.com/jehadja/jaghoub-master)[ Packagist](https://packagist.org/packages/jaghoub/izitools)[ RSS](/packages/jaghoub-izitools/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Install
-------

[](#install)

Using Composer

```
composer require jaghoub/izitools

```

Add the service provider to `config/app.php`

```
jaghoub\izitools\izitoolsServiceProvider::class,
```

Optionally include the Facade in `config/app.php` if you'd like.

```
'izitools' => jaghoub\izitools\Facades\izitools::class,
```

Usage
-----

[](#usage)

### Basic

[](#basic)

From your application, call the `izime` method with a options and type.

include styles

```

```

include javascript

```

```

if use Facade

```
izitools()->izime('tosat', [
 'title'=> 'Welcome to laravel Website Test !',
 'message'=>'is simply dummy text of the printing and typesetting industry. ',
 'color'=>'green',
 'position'=>'center'
]);
---
or
---

izitools()->izime('modal', [
 'title'=> 'Welcome to laravel Website Test !',
 'iframe'=>true,
 'iframeHeight'=>800,
 'iframeURL'=>'http://izimodal.dolce.ninja'
]);
```

without Facade

```
izitools::izime('tosat', [
 'title'=> 'Welcome to laravel Website Test !',
 'message'=>'is simply dummy text of the printing and typesetting industry. ',
 'color'=>'green',
 'position'=>'center'
]);

---
or
---

izitools::izime('modal', [
 'title'=> 'Welcome to laravel Website Test !',
 'iframe'=>true,
 'iframeHeight'=>800,
 'iframeURL'=>'http://izimodal.dolce.ninja'
]);
```

Within a view, you can now check if a flash message exists and output it.

```
@if (izitools::ready())

         {{ izitools::type() }}
@endif
```

### Options

[](#options)

You can pass additional options to the `izime` method, which are then easily accessible within your view.

```
izitools::izime('modal', [
 'title'=> 'Welcome to laravel Website Test !',
 etc ...
]);
```

Then, in your view without Facade.

```
@if (izitools::ready())

     $(document).ready(function(){

 @if (izitools::type() =='tosat')
 iziToast.show({
{!! izitools::options() !!}
  });

 @elseif(izitools::type() =='modal')
$("#modal").iziModal({
 {!! izitools::options() !!}
});

   $('#modal').iziModal('open');
 @else

 iziToast.show({
     title: 'this option not Available',
     message: 'this packages include only modal and tosat type please select one of them while sending data',
     color:'red'
 });

 @endif

     });

@endif
```

with using Facade

```
@if (izitools()->ready())

     $(document).ready(function(){

 @if (izitools()->type() =='tosat')
 iziToast.show({
{!! izitools::options() !!}
  });

 @elseif(izitools()->type() =='modal')
$("#modal").iziModal({
 {!! izitools()->options() !!}
});

   $('#modal').iziModal('open');
 @else

 iziToast.show({
     title: 'this option not Available',
     message: 'this packages include only modal and tosat type please select one of them while sending data',
     color:'red'
 });

 @endif

     });

@endif
```

> its not suggested to use {!! !!} method on real app it will allow the attack of XSS unless you are sure about data will be pushed .

```
'better user the method izitools::option("option_name")'

```

Built With
----------

[](#built-with)

- [izimodal](http://izimodal.marcelodolce.com/) - jQueryIZIMODAL v1.5.0
- [izitosat](http://izitoast.marcelodolce.com/) - IZITOAST v1.1.2

> The above example uses izimodal,izitosat but the flexibily of izitools means you can easily use it with any JavaScript alert solution.

Issues and contribution
-----------------------

[](#issues-and-contribution)

Just submit an issue or pull request through GitHub. Thanks!

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3244d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8b72999757f5c46c3dfedc481e4fddb1f316280b0640c10353a0040713ff227e?d=identicon)[jehadja](/maintainers/jehadja)

---

Top Contributors

[![jehadja](https://avatars.githubusercontent.com/u/17106547?v=4)](https://github.com/jehadja "jehadja (13 commits)")

---

Tags

laravelnotificationsmodalstosat

### Embed Badge

![Health badge](/badges/jaghoub-izitools/health.svg)

```
[![Health](https://phpackages.com/badges/jaghoub-izitools/health.svg)](https://phpackages.com/packages/jaghoub-izitools)
```

###  Alternatives

[edvinaskrucas/notification

Package for Laravel for helping to manage flash / instant notifications / messages.

520393.9k10](/packages/edvinaskrucas-notification)[sarfraznawaz2005/laravel-sse

Laravel package to provide Server Sent Events functionality for your app.

474.6k](/packages/sarfraznawaz2005-laravel-sse)[usamamuneerchaudhary/filament-notifier

A powerful notification system for FilamentPHP that handles multi-channel notifications with template management, scheduling, and real-time delivery. Built for developers who need enterprise-grade notifications without the complexity.

321.1k](/packages/usamamuneerchaudhary-filament-notifier)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
