├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── config └── options.php ├── src ├── Casts │ └── OptionPayload.php ├── Contracts │ └── Repository.php ├── Facades │ └── Option.php ├── LaravelOptionsServiceProvider.php ├── Models │ └── Option.php ├── Repository.php └── helpers.php └── stubs └── create_options_table.php.stub /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/composer.json -------------------------------------------------------------------------------- /config/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/config/options.php -------------------------------------------------------------------------------- /src/Casts/OptionPayload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/src/Casts/OptionPayload.php -------------------------------------------------------------------------------- /src/Contracts/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/src/Contracts/Repository.php -------------------------------------------------------------------------------- /src/Facades/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/src/Facades/Option.php -------------------------------------------------------------------------------- /src/LaravelOptionsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/src/LaravelOptionsServiceProvider.php -------------------------------------------------------------------------------- /src/Models/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/src/Models/Option.php -------------------------------------------------------------------------------- /src/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/src/Repository.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/src/helpers.php -------------------------------------------------------------------------------- /stubs/create_options_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qh-8/laravel-options/HEAD/stubs/create_options_table.php.stub --------------------------------------------------------------------------------