فهرست منبع

Superfluous bracket (#207)

antimech 7 سال پیش
والد
کامیت
cb009caf3b
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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');
 });
 ```