| Package Data | |
|---|---|
| Maintainer Username: | arkraft |
| Maintainer Contact: | artur@arkraft.de (Artur Kraft) |
| Package Create Date: | 2014-10-26 |
| Package Last Update: | 2015-01-17 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:07:08 |
| Package Statistics | |
|---|---|
| Total Downloads: | 93 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 0 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Laravel 4 Alerts provider to add bootstrap alerts from controllers using the great bootstrap-growl jquery plugin by Nick Larson.
Install with composer
composer require arkraft/alerts 0.8.0
Register the service provicer in app/config/app.php in the providers array
'Arkraft\Alerts\AlertsServiceProvider'
Add an alias under the alias array in app/config/app.php
'Alerts' => 'Arkraft\Alerts\Alerts',
And the last step ist to publish the assets. Execute the following command in the root of your project
php artisan asset:publish --path="vendor/arkraft/alerts/src/public/" jquery
jquery.bootstrap-growl.min.js to your public/packages/jquery directory.
UsageNow you can add alerts from your controller. The following message types are possible
All methods have the same parameters:
Alerts::addInfo("This is a simple info message", "Info");
will an the following message

Add
{{ Alerts::getAlerts() }}
to your sites javascripts.
You can export the default configuration with
php artisan config:publish arkraft/alerts
This will export the following array to 'config/packages/arkraft/alerts/config.php'
return array(
'offset' => '{from: "top", amount: 40}',
'align' => 'right',
'width' => 250,
'delay' => 4000,
'allowDismiss' => false,
'stackupSpacing' => 5
);
The configuration values:
The changes on this configuration file are global for all boxe. To change the configuration for a single alert you can use the configuration parameter like this
Alerts::addDanger("This is a simple error message", "Error", array("delay" => 0, "allowDismiss" => true, "align" => "center"));
This will show a message wich will stay in the center of the screen until it is closed with the close button on the right. Configurations passed as a parameter will overwrite the default configuration.