bozboz / config
This package is abandoned and no longer maintained.
No replacement package was suggested.
There is no license information available for the latest version (v1.6.1) of this package.
v1.6.1
2022-03-14 11:33 UTC
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>')