laravel-ide-helper icon indicating copy to clipboard operation
laravel-ide-helper copied to clipboard

documentation for laravel 8

Open Whizboy-Arnold opened this issue 4 years ago • 0 comments

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

Whizboy-Arnold avatar May 17 '21 20:05 Whizboy-Arnold