3 use Illuminate\Support\Facades\Facade;
8 |--------------------------------------------------------------------------
10 |--------------------------------------------------------------------------
12 | This value is the name of your application. This value is used when the
13 | framework needs to place the application's name in a notification or
14 | any other location as required by the application or its packages.
18 'name' => env('APP_NAME', 'Laravel'),
21 |--------------------------------------------------------------------------
22 | Application Environment
23 |--------------------------------------------------------------------------
25 | This value determines the "environment" your application is currently
26 | running in. This may determine how you prefer to configure various
27 | services the application utilizes. Set this in your ".env" file.
31 'env' => env('APP_ENV', 'production'),
34 |--------------------------------------------------------------------------
35 | Application Debug Mode
36 |--------------------------------------------------------------------------
38 | When your application is in debug mode, detailed error messages with
39 | stack traces will be shown on every error that occurs within your
40 | application. If disabled, a simple generic error page is shown.
44 'debug' => (bool) env('APP_DEBUG', false),
47 |--------------------------------------------------------------------------
49 |--------------------------------------------------------------------------
51 | This URL is used by the console to properly generate URLs when using
52 | the Artisan command line tool. You should set this to the root of
53 | your application so that it is used when running Artisan tasks.
57 'url' => env('APP_URL', 'http://localhost'),
59 'asset_url' => env('ASSET_URL'),
62 |--------------------------------------------------------------------------
63 | Application Timezone
64 |--------------------------------------------------------------------------
66 | Here you may specify the default timezone for your application, which
67 | will be used by the PHP date and date-time functions. We have gone
68 | ahead and set this to a sensible default for you out of the box.
75 |--------------------------------------------------------------------------
76 | Application Locale Configuration
77 |--------------------------------------------------------------------------
79 | The application locale determines the default locale that will be used
80 | by the translation service provider. You are free to set this value
81 | to any of the locales which will be supported by the application.
88 |--------------------------------------------------------------------------
89 | Application Fallback Locale
90 |--------------------------------------------------------------------------
92 | The fallback locale determines the locale to use when the current one
93 | is not available. You may change the value to correspond to any of
94 | the language folders that are provided through your application.
98 'fallback_locale' => 'en',
101 |--------------------------------------------------------------------------
103 |--------------------------------------------------------------------------
105 | This locale will be used by the Faker PHP library when generating fake
106 | data for your database seeds. For example, this will be used to get
107 | localized telephone numbers, street address information and more.
111 'faker_locale' => 'en_US',
114 |--------------------------------------------------------------------------
116 |--------------------------------------------------------------------------
118 | This key is used by the Illuminate encrypter service and should be set
119 | to a random, 32 character string, otherwise these encrypted strings
120 | will not be safe. Please do this before deploying an application!
124 'key' => env('APP_KEY'),
126 'cipher' => 'AES-256-CBC',
129 |--------------------------------------------------------------------------
130 | Autoloaded Service Providers
131 |--------------------------------------------------------------------------
133 | The service providers listed here will be automatically loaded on the
134 | request to your application. Feel free to add your own services to
135 | this array to grant expanded functionality to your applications.
142 * Laravel Framework Service Providers...
144 Illuminate\Auth\AuthServiceProvider::class,
145 Illuminate\Broadcasting\BroadcastServiceProvider::class,
146 Illuminate\Bus\BusServiceProvider::class,
147 Illuminate\Cache\CacheServiceProvider::class,
148 Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
149 Illuminate\Cookie\CookieServiceProvider::class,
150 Illuminate\Database\DatabaseServiceProvider::class,
151 Illuminate\Encryption\EncryptionServiceProvider::class,
152 Illuminate\Filesystem\FilesystemServiceProvider::class,
153 Illuminate\Foundation\Providers\FoundationServiceProvider::class,
154 Illuminate\Hashing\HashServiceProvider::class,
155 Illuminate\Mail\MailServiceProvider::class,
156 Illuminate\Notifications\NotificationServiceProvider::class,
157 Illuminate\Pagination\PaginationServiceProvider::class,
158 Illuminate\Pipeline\PipelineServiceProvider::class,
159 Illuminate\Queue\QueueServiceProvider::class,
160 Illuminate\Redis\RedisServiceProvider::class,
161 Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
162 Illuminate\Session\SessionServiceProvider::class,
163 Illuminate\Translation\TranslationServiceProvider::class,
164 Illuminate\Validation\ValidationServiceProvider::class,
165 Illuminate\View\ViewServiceProvider::class,
168 * Package Service Providers...
172 * Application Service Providers...
174 App\Providers\AppServiceProvider::class,
175 App\Providers\AuthServiceProvider::class,
176 // App\Providers\BroadcastServiceProvider::class,
177 App\Providers\EventServiceProvider::class,
178 App\Providers\RouteServiceProvider::class,
183 |--------------------------------------------------------------------------
185 |--------------------------------------------------------------------------
187 | This array of class aliases will be registered when this application
188 | is started. However, feel free to register as many as you wish as
189 | the aliases are "lazy" loaded so they don't hinder performance.
193 'aliases' => Facade::defaultAliases()->merge([