env('APP_NAME', 'Laravel'), /* |-------------------------------------------------------------------------- | Application Environment |-------------------------------------------------------------------------- */ 'env' => env('APP_ENV', 'production'), /* |-------------------------------------------------------------------------- | Application Debug Mode |-------------------------------------------------------------------------- */ 'debug' => (bool) env('APP_DEBUG', false), /* |-------------------------------------------------------------------------- | Application URL |-------------------------------------------------------------------------- */ 'url' => env('APP_URL', 'http://localhost'), 'admin_url' => env('ADMIN_URL', 'http://127.0.0.1:8001'), /* |-------------------------------------------------------------------------- | Application Timezone |-------------------------------------------------------------------------- */ 'timezone' => 'Asia/Jakarta', /* |-------------------------------------------------------------------------- | Application Locale Configuration |-------------------------------------------------------------------------- */ 'locale' => env('APP_LOCALE', 'en'), 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), /* |-------------------------------------------------------------------------- | Encryption Key |-------------------------------------------------------------------------- */ 'cipher' => 'AES-256-CBC', 'key' => env('APP_KEY'), 'previous_keys' => [ ...array_filter( explode(',', (string) env('APP_PREVIOUS_KEYS', '')) ), ], /* |-------------------------------------------------------------------------- | Maintenance Mode Driver |-------------------------------------------------------------------------- */ 'maintenance' => [ 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), 'store' => env('APP_MAINTENANCE_STORE', 'database'), ], /* |-------------------------------------------------------------------------- | Autoloaded Service Providers |-------------------------------------------------------------------------- | | Provider di bawah ini akan dimuat secara otomatis. | */ // 'providers' => ServiceProvider::defaultProviders()->merge([ // /* // * Package Service Providers... // */ // /* // * Application Service Providers... // */ // App\Providers\AppServiceProvider::class, // App\Providers\RouteServiceProvider::class, // ])->toArray(), /* |-------------------------------------------------------------------------- | Class Aliases |-------------------------------------------------------------------------- | | Array alias kelas ini akan didaftarkan saat aplikasi dimulai. | */ 'aliases' => Facade::defaultAliases()->merge([ // 'Example' => App\Facades\Example::class, ])->toArray(), ];