innsoft / alert
There is no license information available for the latest version (dev-master) of this package.
Alerts for laravel 4
dev-master
2014-08-23 20:39 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2024-11-19 09:06:36 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