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
- dev-master
- 3.1
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.1.2
- 2.1
- 2.0.x-dev
- 2.0.23
- 2.0.22
- 2.0.21
- 2.0.20
- 2.0.19
- 2.0.18
- 2.0.17
- 2.0.16
- 2.0.15
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.2
- 1.0.x-dev
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 0.1.32
- 0.1.31
- 0.1.30
- 0.1.29
- 0.1.28
- 0.1.27
- 0.1.26
- 0.1.25
- 0.1.24
- 0.1.23
- 0.1.22
- 0.1.21
- 0.1.20
- 0.1.19
- 0.1.18
- 0.1.17
- 0.1.16
- 0.1.15
- 0.1.14
This package is auto-updated.
Last update: 2025-01-28 12:25:13 UTC
README
Install using composer:
composer require flowcontrol/admin
Register 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