Browse Source

Superfluous bracket (#207)

antimech 7 years ago
parent
commit
cb009caf3b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -44,7 +44,7 @@ Route::group(array('prefix' => 'api/v1', 'middleware' => []), function () {
 	// Custom route added to standard Resource
 	Route::get('example/foo', 'ExampleController@foo');
 	// Standard Resource route
-	Route::resource('example', 'ExampleController'));
+	Route::resource('example', 'ExampleController');
 });
 ```