ablitica/quotes

一个用于生成单个随机引用的Laravel 4包。

dev-master 2015-03-05 21:36 UTC

This package is not auto-updated.

Last update: 2024-09-24 07:24:42 UTC


README

返回单个随机引用。

示例:管理是做正确的事情;领导是做正确的事情。 - 彼得·德鲁克

安装方法

在您的`composer.json`文件的`require`键中,添加以下内容


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();
});
```