ken / sweetanimation
simple alert notifications with sweet alert and animate.css for laravel
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:packages
Requires
- php: >=5.4.0
- illuminate/support: ~5.0
This package is auto-updated.
Last update: 2025-01-09 10:24:11 UTC
README
This is Flexible Notification customize from Codecourse/Notify. Thanks to Alex Garrett.
Install
Using Composer
composer require ken/sweetanimation
Add the service provider to config/app.php
Ken\Sweetanimation\Provider\SpiderServiceProvider::class,
Optionally include the Facade in config/app.php
if you'd like.
'Sweet' => Ken\Sweetanimation\Facades\Sweetanimation::class,
Note, there is a animation() function available, so unless you really want to use the Facade, there's no need to include it.
Usage
Basic
From your application, call the flash
method with a message and type.
animation()->flash('Welcome back!', 'success');
Within a view, you can now check if a flash message exists and output it.
@if (animation()->ready()) <div class="alert-box {{ sweet()->type() }}"> {{ animation()->message() }} </div> @endif
Notify is front-end framework agnostic, so you're free to easily implement the output however you choose.
Options
You can pass additional options to the flash
method, which are then easily accessible within your view.
animation()->flash('Welcome back!', 'success', [ 'timer' => 3000, 'text' => 'It\'s really great to see you again', 'animate' => 'flash' ]);
Then, in your view.
@if (animation()->ready()) <script> swal({ title: "{!! animation()->message() !!}", text: "{!! animation()->option('text') !!}", type: "{{ animation()->type() }}", @if (animation()->option('timer')) timer: {{ animation()->option('timer') }}, showConfirmButton: false, @endif @if (animation()->option('animate')) animation: false, customClass: "animated {!! animation()->option('animate') !!}", showConfirmButton: true // optional @endif }); </script> @endif
The above example uses SweetAlert, but the flexibily of SweetAlert and Animate.css means you can easily use it with any JavaScript alert solution.
Issues and contribution
Just submit an issue or pull request through GitHub. Thanks!