Package Data | |
---|---|
Maintainer Username: | kenhyuwa |
Maintainer Contact: | wahyu.dhiraashandy8@gmail.com (ken) |
Package Create Date: | 2016-11-08 |
Package Last Update: | 2016-11-08 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-08 15:01:36 |
Package Statistics | |
---|---|
Total Downloads: | 18 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This is Flexible Notification customize from Codecourse/Notify. Thanks to Alex Garrett.
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.
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.
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.
Just submit an issue or pull request through GitHub. Thanks!