1.应用场景
| 主要用于快速构建一个功能齐全的管理后台.CMS |
2.学习/操作
|
1.介绍 简单说: 功能很强大, 基本常用的功能都有实现.
2.实践
后续补充 ... |
3.问题/补充
|
1.这里使用laravel 7进行安装 laravel-admin, 执行 php artisan admin:install 出现如下报错: 解决办法: https://github.com/z-song/laravel-admin/issues/1541 简单讲: app\Providers\AppServiceProvider.php 中添加一行默认值即可 同时要删除已经生成的数据表 如果没有删除已经生成的表,即users表
重新执行 php artisan admin:install 出现如下报错: 删除users表, 再次执行php artisan admin:install 即可
... |
4.参考
|
https://laravel-admin.org/ //官网 https://laravel-admin.org/docs/zh/installation //官方文档 https://github.com/z-song/laravel-admin //源码 https://stackoverflow.com/questions/52364415/php-with-mysql-8-0-error-the-server-requested-authentication-method-unknown-to //PHP with MySQL 8.0+ error: The server requested authentication method unknown to the client [duplicate] https://blog.csdn.net/qq_34248133/article/details/104041921 //Laravel + Laravel-admin 搭建网站后台 https://xueyuanjun.com/books/laravel-docs-7 //Laravel 7 中文文档 |
后续补充
...