inweb/admin
最新稳定版本:9.0.3
Composer 安装命令:
composer require inweb/admin
包简介
Admin Panel for Laravel Framework
README 文档
README
Admin Panel for Laravel Framework
Features
- CRUD
- Images management
Requirements
- Laravel >=5.6
Installation
- Install package via composer require
or add to your composer.json to require section and update your dependenciescomposer require inweb/admin"inweb/admin": "dev-master" - Run migrations
php artisan migrate - Run installation command
php artisan admin:install
Manual installation
Run seeder to create admin user with default credentials
php artisan admin:seed
Add guard in config/auth.php
'guards' => [ ... 'admin' => [ 'driver' => 'session', 'provider' => 'admin', ], ],
Add provider in config/auth.php
'providers' => [ ... 'admin' => [ 'driver' => 'eloquent', 'model' => InWeb\Admin\App\Models\AdminUser::class, ], ],
Publish assets
php artisan admin:publish
You are ready to go!
统计信息
- 总下载量: 541
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-08