inweb / admin
Laravel 框架的 Admin 控制面板
9.0.3
2022-07-24 20:45 UTC
Requires
- php: ^7.1|^8.0
- cakephp/chronos: ^1.0|^2.0
- laravel/scout: >=8
- spatie/laravel-permission: ^5.4
- dev-master
- 9.0.3
- 9.0.0
- 8.0.10
- 8.0.9
- 8.0.8
- 8.0.7
- 8.0.6
- 8.0.5
- 8.0.4
- 8.0.3
- 8.0.2
- 8.0.1
- v8.0
- 1.0.1
- 1.0.0
- dev-dependabot/npm_and_yarn/postcss-and-laravel-mix-and-tailwindcss-8.4.31
- dev-dependabot/npm_and_yarn/jquery-3.7.0
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/json5-and-laravel-mix-and-sass-loader-2.2.3
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/qs-6.5.3
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/moment-timezone-0.5.35
- dev-dependabot/npm_and_yarn/moment-2.29.4
- dev-main
- dev-update
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/npm-6.14.16
- dev-dependabot/npm_and_yarn/axios-0.21.2
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/color-string-1.9.0
- dev-dependabot/npm_and_yarn/browserslist-4.19.3
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/bin-links-1.1.8
- dev-dependabot/npm_and_yarn/dot-prop-4.2.1
- dev-dependabot/npm_and_yarn/npm-user-validate-1.0.1
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/https-proxy-agent-2.2.4
- dev-dependabot/npm_and_yarn/acorn-6.4.1
- dev-order_page
- dev-dependabot/npm_and_yarn/mixin-deep-1.3.2
This package is auto-updated.
Last update: 2024-09-03 19:21:24 UTC
README
Laravel 框架的 Admin 控制面板
特性
- CRUD
- 图片管理
要求
- Laravel >=5.6
安装
- 通过 composer require 安装包
或者将包添加到你的 composer.json 文件的 require 部分,并更新你的依赖关系composer require inweb/admin"inweb/admin": "dev-master" - 运行迁移
php artisan migrate - 运行安装命令
php artisan admin:install
手动安装
运行生成器以创建具有默认凭据的管理员用户
php artisan admin:seed
在 config/auth.php 中添加守卫
'guards' => [ ... 'admin' => [ 'driver' => 'session', 'provider' => 'admin', ], ],
在 config/auth.php 中添加提供者
'providers' => [ ... 'admin' => [ 'driver' => 'eloquent', 'model' => InWeb\Admin\App\Models\AdminUser::class, ], ],
发布资产
php artisan admin:publish
你已准备好开始使用!