Download the PHP package intervention/message without Composer
On this page you can find all versions of the php package intervention/message. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download intervention/message
More information about intervention/message
Files in intervention/message
Package message
Short Description Quick flash message setup for Laravel
License MIT
Homepage http://intervention.io/
Informations about the package message
This package is abandoned and will no longer be maintained. I suggest using Laravel's own flash data methods to have the same functionality.
Intervention Message (Abandoned)
Quick and easy Flash Message setup for Laravel.
Installation
Install Intervention Message with Composer.
$ composer require intervention/message
The package is built to work with the Laravel Framework. The integration is done in seconds.
Open your Laravel config file config/app.php
and add the following lines.
In the $providers
array add the service providers for this package.
'providers' => array(
Intervention\Message\MessageServiceProvider::class
),
Add the facade of this package to the $aliases
array.
'aliases' => array(
...
'Message' => Intervention\Message\Facades\Message::class
),
Usage
Code Example
Custom View
You can create a local version of the view for customization by running the publish
artisan command:
php artisan vendor:publish --provider="Intervention\Message\MessageServiceProviderLaravel5"
License
Intervention Image is licensed under the MIT License.
Copyright 2014 Oliver Vogel