Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Polr | 4,591 | a month ago | 205 | gpl-2.0 | PHP | |||||
:aerial_tramway: A modern, powerful, and robust URL shortener | ||||||||||
Dcat Admin | 3,362 | 52 | 4 days ago | 72 | June 27, 2022 | 228 | mit | PHP | ||
🔥 基于 Laravel 的后台系统构建工具 (Laravel Admin),使用很少的代码快速构建一个功能完善的高颜值后台系统,内置丰富的后台常用组件,开箱即用,让开发者告别冗杂的HTML代码 | ||||||||||
Unifiedtransform | 2,570 | 9 days ago | 109 | gpl-3.0 | PHP | |||||
A school management Software | ||||||||||
Cms | 2,518 | 7 years ago | 18 | March 15, 2015 | 8 | agpl-3.0 | PHP | |||
A PHP CMS powered by Laravel 5 and Sentry | ||||||||||
Cms | 2,383 | a year ago | 60 | November 04, 2021 | 196 | PHP | ||||
Multilingual PHP CMS built with Laravel and bootstrap | ||||||||||
Adminlte Laravel | 1,814 | 485 | 21 | 24 days ago | 100 | September 19, 2020 | n,ull | mit | PHP | |
A Laravel 5 package that switchs default Laravel scaffolding/boilerplate to AdminLTE template and Pratt Landing Page with Bootstrap 3.0 | ||||||||||
Laravel Form Builder | 1,662 | 229 | 50 | 15 days ago | 85 | April 08, 2022 | 113 | mit | PHP | |
Laravel Form builder for version 5+! | ||||||||||
Package Skeleton Laravel | 1,520 | 5 days ago | mit | PHP | ||||||
A skeleton repository for Spatie's Laravel Packages | ||||||||||
Livewire Powergrid | 1,059 | 2 days ago | 83 | June 29, 2022 | 3 | mit | PHP | |||
⚡ PowerGrid generates Advanced Datatables using Laravel Livewire. | ||||||||||
Laravel 5 Bootstrap 3 Starter Site | 917 | 5 years ago | 6 | PHP | ||||||
Laravel Framework 5 Bootstrap 3 Starter Site is a basic application with news, photo and video galeries. |
Dcat Admin
是一个基于laravel-admin二次开发而成的后台系统构建工具,只需很少的代码即可快速构建出一个功能完善的高颜值后台系统。内置丰富的后台常用组件,开箱即用,让开发者告别冗杂的HTML代码,对后端开发者非常友好。
learnku文档 | 文档 | Demo (在线演示站) | Demo源码 | Demo源码 (码云) | 扩展
Section
功能(类似Wordpress
的Filter
和blade
模板的section
标签)如果安装过程中出现
composer
下载过慢或安装失败的情况,请运行命令composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
把composer
镜像更换为阿里云镜像。
首先需要安装laravel
,如已安装可以跳过此步骤
composer create-project --prefer-dist laravel/laravel 项目名称 7.*
# 或
composer create-project --prefer-dist laravel/laravel 项目名称
安装完laravel
之后需要修改.env
文件,设置数据库连接设置正确
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=dcat-admin
DB_USERNAME=root
DB_PASSWORD=
安装dcat-admin
cd {项目名称}
composer require dcat/laravel-admin
然后运行下面的命令来发布资源:
php artisan admin:publish
在该命令会生成配置文件config/admin.php
,可以在里面修改安装的地址、数据库连接、以及表名,建议都是用默认配置不修改。
然后运行下面的命令完成安装:
执行这一步命令可能会报以下错误
Specified key was too long ... 767 bytes
,如果出现这个报错,请在app/Providers/AppServiceProvider.php
文件的boot
方法中加上代码\Schema::defaultStringLength(191);
,然后删除掉数据库中的所有数据表,再重新运行一遍php artisan admin:install
命令即可。
php artisan admin:install
上述步骤操作完成之后就可以配置web
服务了,注意需要把web
目录指向public
目录!如果用的是nginx
,还需要在配置中加上伪静态配置
location / {
try_files $uri $uri/ /index.php?$query_string;
}
启动服务后,在浏览器打开 http://localhost/admin
,使用用户名 admin
和密码 admin
登陆。
扩展 | 描述 | dcat-admin 版本 |
---|---|---|
dcat-page | 简洁的静态站点构建工具 | * |
ueditor | 百度在线编辑器 | * |
grid-sortable | 表格拖曳排序工具 | * |
Dcat Admin
基于以下组件:
This project exists thanks to all the people who contribute. [Contribute].
Become a financial contributor and help us sustain our community. [Contribute]
Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]
dcat-admin
is licensed under The MIT License (MIT).