Appication Development and Production Settings
@if(env('APP_ENV') === 'local' && env('APP_DEBUG') === TRUE || config('app.env') === 'locale' && config('app.debug') === TRUE)
Currently application is running in developement mode.
{{ __('Go Live') }}
@endif
@if(env('APP_ENV') === 'production' && env('APP_DEBUG') === FALSE || config('app.env') === 'production' && config('app.debug') === FALSE)
Currently application is running in production mode.
@endif
Clear compiled views to make views up to date.
You might need to refresh the config caching when you change something on production environment.
Clear cache routing.
Clear system log files
Link media and files accessible.