From 936addceefec2093bc8d010d2cba9a361dae2a0e Mon Sep 17 00:00:00 2001 From: "Bart Huisman (also known as VolgensBartjes)" Date: Thu, 4 Aug 2016 11:55:08 +0200 Subject: [PATCH] give newbees a package service providers section, preventing adding after application when i started, i ended up putting all package specific service providers just at the bottom of the application service providers. But when making a route group like domain.com/{keyword}, the packages that are registering its own url's, not work anymore (like now when i installed the translations manager from barryvdh). When putting them above the app specific, everything works. So just give it to the user as a default place? --- config/app.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/app.php b/config/app.php index 7c1987c5ac1..332cac7d81f 100644 --- a/config/app.php +++ b/config/app.php @@ -149,6 +149,11 @@ Illuminate\Translation\TranslationServiceProvider::class, Illuminate\Validation\ValidationServiceProvider::class, Illuminate\View\ViewServiceProvider::class, + + /* + * Package Service Providers... + */ + /* * Application Service Providers...