laravel-admin-ext / config
Config extension for laravel-admin
Installs: 165 438
Dependents: 7
Suggesters: 0
Security: 0
Stars: 96
Watchers: 4
Forks: 57
Open Issues: 10
Requires
- php: >=7.0.0
- encore/laravel-admin: >=1.6
- laravel/framework: >=5.5
Requires (Dev)
- laravel/laravel: ~5.5
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2024-11-11 14:24:50 UTC
README
Inspired by https://github.com/laravel-backpack/settings.
Screenshot
Installation
$ composer require laravel-admin-ext/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\Facades\Schema; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { public function boot() { $table = config('admin.extensions.config.table', 'admin_config'); if (Schema::hasTable($table)) { 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).