├── LICENSE ├── README.md ├── composer.json ├── database └── migrations │ └── 2020_03_04_044421_create_settings_table.php └── src ├── Facades └── Settings.php ├── Providers └── SettingsServiceProvider.php ├── Setting.php └── SettingsManager.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibraheem-ghazi/laravel-settings-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibraheem-ghazi/laravel-settings-manager/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibraheem-ghazi/laravel-settings-manager/HEAD/composer.json -------------------------------------------------------------------------------- /database/migrations/2020_03_04_044421_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibraheem-ghazi/laravel-settings-manager/HEAD/database/migrations/2020_03_04_044421_create_settings_table.php -------------------------------------------------------------------------------- /src/Facades/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibraheem-ghazi/laravel-settings-manager/HEAD/src/Facades/Settings.php -------------------------------------------------------------------------------- /src/Providers/SettingsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibraheem-ghazi/laravel-settings-manager/HEAD/src/Providers/SettingsServiceProvider.php -------------------------------------------------------------------------------- /src/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibraheem-ghazi/laravel-settings-manager/HEAD/src/Setting.php -------------------------------------------------------------------------------- /src/SettingsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibraheem-ghazi/laravel-settings-manager/HEAD/src/SettingsManager.php --------------------------------------------------------------------------------