ablitica / quotes
A Laravel 4 package for generating a single random quote.
dev-master
2015-03-05 21:36 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2024-11-19 08:00:41 UTC
README
Returns a single random quotation.
Example: Management is doing things right; leadership is doing the right things. - Peter F. Drucker
How to Install
In the `
requirekey of your
composer.json`
file, add the following:
Run the Composer update command:
```$ composer update```
In your ```config/app.php``` add ```'Ablitica\Quotes\QuotesServiceProvider'``` to the end of the ```$providers``` array.
## Usage ##
```
Route::get('/quote', function(){
echo Quotes::single();
});
```