Package Data | |
---|---|
Maintainer Username: | Krato1 |
Maintainer Contact: | eric@infinety.es (Eric Lagarda) |
Package Create Date: | 2017-01-16 |
Package Last Update: | 2017-06-15 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:22:20 |
Package Statistics | |
---|---|
Total Downloads: | 2,315 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 11 |
Total Watchers: | 3 |
Total Forks: | 6 |
Total Open Issues: | 1 |
With this package you can edit your Laravel config files in an easy way.
Install through composer:
composer require infinety-es/config-manager
Add this to app/config/app.php
under the providers key:
Infinety\ConfigManager\ConfigManagerServiceProvider::class,
Publish package files:
php artisan vendor:publish --provider="Infinety\ConfigManager\ConfigManagerServiceProvider"
Create default layout with php artisan make:auth
and edit layouts/app.blade.php
and add a yield called script after app.js. Your app.blade.php should look like:
<!-- Scripts -->
<script src="{{ asset('js/app.js') }}"></script>
@yield('scripts')
</body>
Edit config/configmanager.php
config file to set the route and middleware, default to:
<?php
return [
/*
|--------------------------------------------------------------------------
| Routes group config
|--------------------------------------------------------------------------
|
| The default group settings for the translations routes.
|
*/
'route' => [
'prefix' => 'dashboard/config',
'middleware' => [
'web',
'auth',
'role:admin',
],
],
];
And now go to your route. Yo will see all config files in the select. Choose one and the page will refresh with the config keys and values.
Currently this package is not saving no defined arrays. Take a look this example:
<?php
return [
'route' => [
'myData' => [ //This array can not be changed in this moment
'first',
'second',
'third',
],
'myObject' => [ //This array can be changed because has keys
'demo' => false,
'test' => true
]
'custom' => true, //This can be changed
'value' => 'my own value' //This can be changed
],
];
I will try to fix shortly. Also if you like it you can make a Pull Request,
Mit
Hope you like it!