Answers for "laravel config default value"

PHP
2

laravel get env variable

dd(env('APP_NAME'));
Posted by: Guest on October-15-2020
1

laravel set config

config()->set('config.path', $value);
Posted by: Guest on January-08-2021
2

laravel APP_ENV config

if (\Illuminate\Support\Facades\App::environment('production')) {
    // The environment is production
}
Posted by: Guest on November-10-2020

Browse Popular Code Answers by Language