All Projects → xusenlin → Voyager

xusenlin / Voyager

Licence: MIT License
voyager-zh for laravel

Programming Languages

PHP
23972 projects - #3 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to Voyager

Pyzh
📚 一起写Python文章,一起看Python文章 - 利用readthedocs的Python技术文章的收集和翻译。
Stars: ✭ 1,387 (+5037.04%)
Mutual labels:  zh-cn
voyager-cheatsheet
Laravel Voyager Cheat Sheet
Stars: ✭ 32 (+18.52%)
Mutual labels:  voyager
bread-templates
BREAD Templates with Voyager
Stars: ✭ 19 (-29.63%)
Mutual labels:  voyager
Http Rfcs.zh Cn
翻译 HTTP 相关的 RFC (中英文对照)
Stars: ✭ 111 (+311.11%)
Mutual labels:  zh-cn
Trpl Zh Cn
Rust 程序设计语言(第二版 & 2018 edition)
Stars: ✭ 2,627 (+9629.63%)
Mutual labels:  zh-cn
Voyager
Voyager - The Missing Laravel Admin
Stars: ✭ 10,801 (+39903.7%)
Mutual labels:  voyager
Rustonomicon zh Cn
Rust死灵书(Rustonomicon)简体中文翻译
Stars: ✭ 82 (+203.7%)
Mutual labels:  zh-cn
voyager-redirects
A Hook that allows you to add redirects to your Laravel and Voyager App
Stars: ✭ 31 (+14.81%)
Mutual labels:  voyager
Reading And Comprehense Redis Cluster
分布式NOSQL redis源码阅读中文分析注释,带详尽注释以及相关流程调用注释,提出改造点,redis cluster集群功能、节点扩容、槽位迁移、failover故障切换、一致性选举完整分析,对理解redis源码很有帮助,解决了source insight中文注释乱码问题,更新完毕(redis源码学习交流QQ群:568892619)
Stars: ✭ 224 (+729.63%)
Mutual labels:  zh-cn
voyager-page-blocks
A module to provide page blocks for Voyager 📝
Stars: ✭ 80 (+196.3%)
Mutual labels:  voyager
Jekyll Minimal Theme Zh Cmn Hans
jekyll-minimal-theme的中文简体化,一款极简(风格)的 jekyll 主题
Stars: ✭ 119 (+340.74%)
Mutual labels:  zh-cn
Llvm Guide Zh
User Guides For those new to the LLVM system.(LLVM系统的新用户指南,中文翻译版)
Stars: ✭ 180 (+566.67%)
Mutual labels:  zh-cn
TypeScript-Doc-Zh
Typescript 官方文档中文翻译
Stars: ✭ 86 (+218.52%)
Mutual labels:  zh-cn
Awesome Kettle
存放关于kettle的资料
Stars: ✭ 103 (+281.48%)
Mutual labels:  zh-cn
openwrt
OpenWrt Stable 1907 with lean's package
Stars: ✭ 55 (+103.7%)
Mutual labels:  zh-cn
Voyager Zh
㊙️voyager 的中文汉化版 基于laravel 的管理后台 权限控制,菜单,数据库手脚架,长期更新
Stars: ✭ 84 (+211.11%)
Mutual labels:  zh-cn
blog interface
data interface of my blog
Stars: ✭ 17 (-37.04%)
Mutual labels:  voyager
jq-manual-cn
jq 中文手册
Stars: ✭ 28 (+3.7%)
Mutual labels:  zh-cn
wave
Wave - The Software as a Service Starter Kit, designed to help you build the SAAS of your dreams 🚀 💰
Stars: ✭ 3,646 (+13403.7%)
Mutual labels:  voyager
voyager-portfolio
A Portfolio Module for Laravel Voyager 💋
Stars: ✭ 15 (-44.44%)
Mutual labels:  voyager

Build Status Build Status Total Downloads Latest Stable Version License Awesome Voyager

Voyager - 一个laravel的后台管理

Made with ❤️ by The Control Group

Voyager-zh Screenshot

站点 & 文档: https://the-control-group.github.io/voyager/

视频演示: https://devdojo.com/series/laravel-voyager-010/

加入我们的聊天: https://voyager-slack-invitation.herokuapp.com/

查看 Voyager 提示: https://voyager-cheatsheet.ulties.com/

Voyager最近的视频: https://larachat.co/live


Voyager 是一个非常棒的后台管理,但是原作者并没有打算将他翻译为中文,这个是由我翻译的中文,可能有的地方翻译不准确(英文太渣--),希望大家加入进来给我提意见,如果你喜欢,欢迎star.

#如何安装

1、拉取tcg/voyager,这个翻译的版本是v0.11.10,其他版本可能会出错。

composer require tcg/voyager

2、下载这个翻译文件覆盖掉tcg/voyager的所有文件

3、修改你的.env 文件里面的数据库配置:

DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

4、然后在.env 文件里面配置 APP_URL ,否则会导致默认头像显示不了之类的:

APP_URL=http://localhost:8000

5、添加 Voyager 服务到 config/app.php 文件 的providers 数组里:

'providers' => [
    // Laravel Framework Service Providers...
    //...
    
    // Package Service Providers
    TCG\Voyager\VoyagerServiceProvider::class,
    // ...
    
    // Application Service Providers
    // ...
],

6、安装voyager,他会复制一些迁移文件和模拟数据文件(seed)等到我们的工作目录并将它迁移到数据库。

php artisan voyager:install

7、填充网站的一些设置

php artisan db:seed --class=SettingsTableSeeder

8、现在模拟一个admin用户以便于我们登录后台,(注意:我已经修改了密码,邮箱:[email protected] 密码:123456)

php artisan db:seed --class=UsersTableSeeder

email: [email protected]
password: 123456

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].