laravel-ide-helper
                                
                                 laravel-ide-helper copied to clipboard
                                
                                    laravel-ide-helper copied to clipboard
                            
                            
                            
                        documentation for laravel 8
hey i may want to highlight for those who want to only register the provider when in development environment only, the documented if ($this->app->local()) { will not work instead use
use Illuminate\Support\Facades\App;
$environment = App::environment();
a top the app config then find out whether app is local by using this instead:
if (App::environment('local')) {
my request is to update the read me to reflect these changes for those in laravel 8