Pārlūkot izejas kodu

Superfluous bracket (#207)

antimech 8 gadi atpakaļ
vecāks
revīzija
cb009caf3b
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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');
 });
 ```