Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dominiquevienne/c2b04e0d68243ef4284644810a68da8b to your computer and use it in GitHub Desktop.
Save dominiquevienne/c2b04e0d68243ef4284644810a68da8b to your computer and use it in GitHub Desktop.
Laravel - Do not edit env values directly in code
<?php
return [
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application. This value is used when the
| framework needs to place the application's name in a notification or
| any other location as required by the application or its packages.
|
*/
/** NEVER DO THAT **/
'name' => 'My New Application name',
/** ... **/
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment