innsoft / alert
Alerts for laravel 4
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/innsoft/alert
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2025-10-07 13:31:33 UTC
README
Alert is a package for Laravel 4, provider a beatifull and simple way to display error messages.
For now this show the errors with structure for bootstrap, like this:
Based on this tutorial of @sileence
Version
0.1
Installation
Require innsoft/alert in composer.json and run composer update.
{
"require": {
"laravel/framework": "4.0.*",
...
"innsoft/alert": "dev-master"
}
...
}
Composer will download the package. After the package is downloaded, open app/config/app.php
and add the service provider:
'providers' => array(
...
'Innsoft\Alert\AlertServiceProvider',
),
Example
On app/routes.php
Route::get('/', function()
{
Alert::message('Welcome to this app!', 'success');
return View::make('hello');
});
On app/views/hello.blade.php add this:
{{ Alert::render() }}
**don't forget add bootstrap files to your project.
License
MIT
Author
Giovanni Lopez