Download the PHP package devmi/flashy without Composer
On this page you can find all versions of the php package devmi/flashy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package flashy
Flashy
Beautiful alert component made with VueJs for Laravel app.
Overview
Installation
Step 1: Composer
From the command line, run:
Step 2: Service Provider
If you're using laravel >5.5 skip to the next step.
Open config/app.php and within the providers array:
Step 3: Vendor Puslish
Now you must publish the vue compenent and register it in order to use it.
open resources/assets/js/app.js
and register the component
you find the file under resources/assets/js/vendor/devmi/Flashy.vue
.
Step 3: Add Flashy Tag
You can add the flashy component anywhere in your blade files but preferably
it should be added to your app.blade.php
file
Usage
Now in your controller before any redirect you may do
The default color is bootstrap alert success.
More Control
You may also change the default theme color, display delay, add title, stop animation
app.blade.php
And
Title:
String
(optional)Message:
String
Type:
string
eg:['primary', 'success', 'danger', 'warning', 'secondary', 'black', 'light']
(optional) | Default:success
Delay:
Integer
(optional) | Default:3000
Animated:
Boolean
(optional) | Default:true
Notice
If you use Ajax requests, you should add to resources/assets/js/app.js
the following code
then simply you can call flashy()
global function from any .vue
file and pass you arguments.
Issues and Contribution
If you find any bug or problem please open an issue or create a pull request, Thanks!.