bozboz / config
Installs: 2 431
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
This package is auto-updated.
Last update: 2022-03-14 11:34:13 UTC
README
Installation
composer require bozboz/config
- Add service provider to app/config.php
Bozboz\Config\Providers\SiteConfig::class,
- Publish vendor migrations
php artisan vendor:publish
- Migrate
php artisan migrate
Usage
app('siteConfig')->get('<alias>')
Bozboz\Config\Config
can be injected as a dependency
All views have access to a $config
variable. Can be used like: {{ $config->get('<alias>') }}
Fetch a collection of all config belonging to a tag: $config->tag('<tag>')