Home > Article > PHP Framework > Very beautiful Laravel management interface!
The following Laravel Framework tutorial column recommends the extension [Very beautiful Laravel management interface!], a very beautiful Laravel management interface! Hope it helps those in need!
##Related recommendations: "Latest Laravel Mall Practical Video Tutorial"
IntroductionA few months ago I Trying to find a new solution for my project, I have built a single page application using Vue (using this awesome framework, Laravel Lumen as API gateway, and Laravel Passport as SSO server). After a few weeks of work, I discovered that that framework has some limitations, especially in terms of deployment and difficulty in being open source (because of the many components involved, CORS setup...). Suddenly one day I had a new idea:Why don’t we use Laravel’s built-in VueJS to build a SPA dashboard?Laravel VueJS = Very beautiful Laravel management interface! (https:/ /github.com/tuandm/laravue)Example: https://laravue.dev\
Documentation: https://doc.laravue.dev
# 使用 composer 克隆项目 composer create-project tuandm/laravue cd laravue # 迁移数据 (在 .env 文件设置了数据库信息之后) php artisan migrate --seed # 生成 JWT 秘钥 php artisan jwt:secret # 安装依赖 yarn install # 构建(开发环境) yarn run dev # 或者 yarn run watch # 启动本地服务 php artisan serve
Original address: https://dev.to/tuandm/laravel--vuejs--laravue---a-beautiful-dashboard-for-laravel -3h11Translation address: https://learnku.com/laravel/t/37417
The above is the detailed content of Very beautiful Laravel management interface!. For more information, please follow other related articles on the PHP Chinese website!