la-php / laravel-admin-config
Config extension for laravel-admin
v10.0.3
2019-01-02 06:51 UTC
Requires
- php: >=7.0.0
- la-php/laravel-admin: ~10.6
- laravel/framework: ~5.5
Requires (Dev)
- laravel/laravel: ~5.5
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2025-03-29 01:10:07 UTC
README
Inspired by https://github.com/laravel-backpack/settings.
Screenshot
Installation
$ composer require la-php/laravel-admin-config
$ php artisan migrate
Open app/Providers/AppServiceProvider.php
, and call the Config::load()
method within the boot
method:
<?php namespace App\Providers; use Encore\Admin\Config\Config; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { public function boot() { if (class_exists(Config::class)) { Config::load(); } } }
Then run:
$ php artisan admin:import config
Open http://your-host/admin/config
Usage
After add config in the panel, use config($key)
to get value you configured.
License
Licensed under The MIT License (MIT).