From ecc17218ad3473bf39efaffa114224ce4b7edb4a Mon Sep 17 00:00:00 2001 From: Zulfadli Sukarno Date: Wed, 3 Mar 2021 13:49:48 +0800 Subject: [PATCH] Update quick-start.md need to add this line in Laravel 8 or else will throw error AuthController not found --- docs/quick-start.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index 9a7b3f11e..3fbc4699d 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -84,7 +84,8 @@ First let's add some routes in `routes/api.php` as follows: Route::group([ 'middleware' => 'api', - 'prefix' => 'auth' + 'prefix' => 'auth', + 'namespace'=>'App\Http\Controllers' ], function ($router) {