Skip to content

Commit

Permalink
Minor readme.md-edit.
Browse files Browse the repository at this point in the history
  • Loading branch information
olssonm committed Aug 9, 2015
1 parent ecab6f4 commit ec52469
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ Route::group(['middleware' => 'auth.very_basic'], function() {

**Single**
``` php
Route::get('/', ['as' = 'start', 'uses' => 'StartController@index', 'middleware' => 'auth.very_basic']);
Route::get('/', [
'as' = 'start',
'uses' => 'StartController@index',
'middleware' => 'auth.very_basic'
]);
```

## Testing
Expand Down

0 comments on commit ec52469

Please sign in to comment.