php 用 Laravel 构建的简单应用程序?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/13927581/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Simple application built with laravel?
提问by Hailwood
I am looking at getting into laravel, it looks like an awesome framework,but it seems to be missing one vital piece of it's documentation.. A "Getting started" tutorial.
我正在考虑进入 laravel,它看起来像一个很棒的框架,但它似乎缺少文档的一个重要部分..“入门”教程。
A simple blog tutorial or similar or even an open source application built on laravel. Does anyone have links to some good tutorials or resources for laravel?
一个简单的博客教程或类似的,甚至是一个基于 laravel 的开源应用程序。有没有人有一些很好的教程或 laravel 资源的链接?
I have come across this nettuts tutorial, but it only skims over things very briefly. I was hoping there would be a tutorial that went more in depth.
我遇到过这个 nettuts 教程,但它只是非常简短地浏览了一些东西。我希望会有一个更深入的教程。
There is of course the official documentationbut that again is more an overview of whatyou can use, it doesn't really tell you howto use them.
当然有官方文档,但更多的是对您可以使用的内容的概述,它并没有真正告诉您如何使用它们。
采纳答案by cjds
Try daylerees.com/codebright(As mentioned by @michel-sim)
尝试daylerees.com/codebright(如@michel-sim 所述)
It gives you a comprehensive tutorial from start to end and its well written
它为您提供了从头到尾的全面教程,并且写得很好
Also if you get stuck
另外如果你卡住了
The community is really helpful too. Check the Forums
社区也非常有帮助。检查论坛
UPDATE
更新
Also I would recommend fallendown2005's laravel videos on YouTube. It really helps if you're a beginner
此外,我会在 YouTube 上推荐 falldown2005 的 Laravel 视频。如果您是初学者,这真的很有帮助
回答by Nikko
I'm Nikko Bautista, the author of the Nettuts+ tutorials. I actually halted the writing the series since I thought Laravel 4 was due soon. I learned that it will come out next year though, so I will actually finish the other parts of the series as well.
我是 Nikko Bautista,Nettuts+ 教程的作者。我实际上停止了编写该系列,因为我认为 Laravel 4 即将发布。不过我知道它会在明年推出,所以我实际上也会完成该系列的其他部分。
Anyway, if you're looking for an application that's built using Laravel, you can check out this open source application I built as part of a hackaton back in the Philippines. It's called "Bukas Palad" (which means "Open Palms" in Tagalog). It's a donation and resources management system designed to help donation and relief centers keep track of donations and resources (this hackaton occurred during in the wake of one of the big storms in the Philippines in 2012).
无论如何,如果您正在寻找使用 Laravel 构建的应用程序,您可以查看我在菲律宾作为 hackaton 的一部分构建的这个开源应用程序。它被称为“Bukas Palad”(在他加禄语中意为“开放的棕榈树”)。这是一个捐赠和资源管理系统,旨在帮助捐赠和救济中心跟踪捐赠和资源(此黑客事件发生在 2012 年菲律宾的一场大风暴之后)。
You can find the code here: http://webpilipinas.github.com/bukaspalad/
你可以在这里找到代码:http: //webpilipinas.github.com/bukaspalad/
This actually makes use of a lot of Laravel components:
这实际上使用了很多 Laravel 组件:
- Migrations
- Eloquent ORM
- Fluent Query Builder
- Events
- Routing
- View Composers
- Asset Management
- REST-based controllers
- Sessions
- Validation
- Inputs
- 迁移
- 雄辩的 ORM
- 流畅的查询生成器
- 活动
- 路由
- 查看作曲家
- 资产管理
- 基于 REST 的控制器
- 会话
- 验证
- 输入
If you have any questions, feel free to create issues on the GitHub page or ask here :)
如果您有任何问题,请随时在 GitHub 页面上创建问题或在这里提问:)
回答by kalin
Another simple one I have found: https://github.com/bstrahija/l4-site-tutorial
我发现的另一个简单的:https: //github.com/bstrahija/l4-site-tutorial
The updated fork is here: https://github.com/djodjoni/Laravel4_Exampleand working version can be seen here: http://l4.djodjo.org
更新的 fork 在这里:https: //github.com/djodjoni/Laravel4_Example和工作版本可以在这里看到:http: //l4.djodjo.org
回答by msurguy
I have created a few of these comprehensive tutorials back in Laravel 3 times and packaged them into a Udemy course. I made the course free of charge a couple months ago. These tutorials are still largely applicable to Laravel 4 for exception of very few syntax changes, perhaps while you will follow these you'll be able to figure out the changes from the docs:
我已经 3 次在 Laravel 中创建了一些这样的综合教程,并将它们打包成 Udemy 课程。几个月前我免费制作了这门课程。这些教程仍然主要适用于 Laravel 4,除了很少的语法更改,也许当您遵循这些教程时,您将能够从文档中找出更改:
http://udemy.com/develop-web-apps-with-laravel-php-framework/
http://udemy.com/develop-web-apps-with-laravel-php-framework/
Check them out and let me know if you need more, I post Laravel tutorials on my blog all the time.
查看它们,如果您需要更多,请告诉我,我一直在我的博客上发布 Laravel 教程。

