flowcontrol / admin
Administration package that allows for fast and flexible admin pages
3.1
2017-12-01 15:24 UTC
Requires
- php: >=5.5.9
- flowcontrol/listview: 4.*
- flowcontrol/query-filters: dev-master
- kris/laravel-form-builder: 1.*
- laracasts/flash: 1.3.*
- laravel/framework: >=5.3
This package is auto-updated.
Last update: 2026-05-28 15:17:55 UTC
README
Install using composer:
composer require flowcontrol/adminRegister the Service Provider (app/Providers/AppServiceProvider.php):
// in AppServiceProvider public function register() { $this->app->register(\FlowControl\Providers\AdminServiceProvider::class); }
* Publish assets, configs, migrations and etc.
php artisan vendor:publish --provider="FlowControl\Providers\AdminServiceProvider"
* Migrate the base tables
php artisan migrate