����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.12.162.40 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/cbt.bofirm.com/config/ |
Upload File : |
<?php return [ /* * Each settings class used in your application must be registered, you can * put them (manually) here. */ 'settings' => [ \App\Settings\SiteSettings::class, \App\Settings\EmailSettings::class, \App\Settings\HomePageSettings::class, \App\Settings\LocalizationSettings::class, \App\Settings\ThemeSettings::class, \App\Settings\TopBarSettings::class, \App\Settings\StatSettings::class, ], /* * When you create a new settings migration via the `make:settings-migration` * command the package will store these migrations in this directory. */ 'migrations_path' => database_path('settings'), /* * When no repository was set for a settings class the following repository * will be used for loading and saving settings. */ 'default_repository' => 'database', /* * Settings will be stored and loaded from these repositories. */ 'repositories' => [ 'database' => [ 'type' => Spatie\LaravelSettings\SettingsRepositories\DatabaseSettingsRepository::class, 'model' => null, 'connection' => null, ], 'redis' => [ 'type' => Spatie\LaravelSettings\SettingsRepositories\RedisSettingsRepository::class, 'connection' => null, 'prefix' => null, ], ], /* * The contents of settings classes can be cached through your application, * settings will be stored within a provided Laravel store and can have an * additional prefix. */ 'cache' => [ 'enabled' => env('SETTINGS_CACHE_ENABLED', false), 'store' => null, 'prefix' => null, ], /* * These global casts will be automatically used whenever a property within * your settings class isn't a default PHP type. */ 'global_casts' => [ DateTimeInterface::class => Spatie\LaravelSettings\SettingsCasts\DateTimeInterfaceCast::class, DateTimeZone::class => Spatie\LaravelSettings\SettingsCasts\DateTimeZoneCast::class, Spatie\DataTransferObject\DataTransferObject::class => Spatie\LaravelSettings\SettingsCasts\DtoCast::class, ], /* * The package will look for settings in these paths and automatically * register them. */ 'auto_discover_settings' => [ app()->path(), ], /* * Automatically discovered settings classes can be cached so they don't * need to be searched each time the application boors up. */ 'discovered_settings_cache_path' => storage_path('app/laravel-settings'), ];