Krato / Laravel-5-Config-Manager by Krato1

Package to edit and view config files
2,312
12
3
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-04-23 03:13:18
Package Statistics
Total Downloads: 2,312
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 12
Total Watchers: 3
Total Forks: 6
Total Open Issues: 1

Laravel 5 Config Manager

Latest Stable Version Total Downloads StyleCI License

With this package you can edit your Laravel config files in an easy way.

Laravel 5 Config Manager

Usage Instructions

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.

Important notice:

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,

License

Mit

Author

Eric Lagarda

Contributing contributions welcome

Hope you like it!