Last active
December 15, 2021 13:40
-
-
Save dominiquevienne/0b56099d6acfa62b63682fcc3d1d152b to your computer and use it in GitHub Desktop.
Laravel config file example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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. | |
| | |
*/ | |
'name' => env('APP_NAME', 'Laravel'), | |
/** ... **/ | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment