search
HomeBackend DevelopmentPHP Tutoriallaravel 项目参考 ?

要做一个大一点的项目,希望参考一下别人的结构或设计

回复内容:

------------------- 更新于: 2014 . 09. 02 ------------------

Laravel China is ready Laravel 中文文档 , 欢迎发起 issue 提交纰漏 和建议 --> Laravel China · GitHub

--

这里将不再更新维护, 请参考 PHPhub 的社区 Wiki --> Laravel 开源项目收集_PHPhub

------------------- 更新于: 2014 . 08. 18 ------------------
  • phphub.org 源码 at GitHub 欢迎 贡献代码 或 提交 Issue。 PHPhub - PHP & Laravel的中文社区

  • laravel.io 的源代码 LaravelIO/laravel.io at GitHub

  • invoiceninja.com 的源代码 hillelcoren/invoice-ninja at GitHub

  • laravel-tricks.com 的源代码 CodepadME/laravel-tricks at GitHub

  • laravelsnippets.com 的源代码 basco-johnkevin/laravelsnippets at GitHub

  • octoberCMS platform based on the Laravel PHP Framework octobercms/october at GitHub Intro Video -->vimeo.com/79963873

  • wardrobeA minimal blogging application

  • foxted/larabook at GitHub 来自视频教程 Build Larabook From Scratch

  • mmruby/metronome at GitHub A Simple Forum using Laravel Framework.

可以到我的小站看看:LaraBase——全栈工程师之家
已经实现的功能:

初步实现功能

-基本CRUD

-CRUD自动化脚本(只需一个命令和配置文件,一秒钟生成路由,请求,控制器,模型,模型仓库,migration,数据库,视图等)

-菜单的无限分类

-注册登录功能

-OAuth github,qq 登录功能;

-登录验证功能

-发邮件功能

-重设,找回密码功能

-验证码功能

-文件上传

-媒体管理

-图像处理

-文章收藏功能

-论坛系统

-搜索功能

-用户权限

-评论功能

-标签功能

-持久化系统设置

-消息提示功能

-通讯及聊天系统

Laravel完整开源项目学习参考:

原型项目

Laravel 5 Boilerplate —— 基于当前Laravel最新版本(Laravel 5.1.*)并集成Boilerplate的项目
Laravel 5 Angular Material Starter —— 这是一个Laravel 5.1和AngularJS的原型项目


CMS

Bootstrap CMS —— Laravel 5.1驱动的功能强大的CMS
October —— 基于Laravel 5,致力于让开发工作变得简单的CMS
PyroCMS —— MVC架构的PHP内容管理系统,3.0以前基于CodeIgniter,目前基于Laravel 5.1
LavaLite —— 基于Laravel 5.1 & Bootstrap 3的内容管理系统
TypiCMS —— 基于 Laravel 5 构建的、支持多语言的内容管理系统

Laravel and AngularJS CMS —— 基于Laravel 5.1和AngularJS的CMS

Microweber —— 基于 Laravel 拖拽式生成 CMS 及在线商店利器


论坛

Laravel.io —— Laravel开发者社区
Flarum —— 免费的、开源的、专注于简约的论坛系统,esoTalk和FluexBB的联合继承者
PHPHub —— 基于Laravel 4.2,积极向上的 PHP & Laravel 开发者社区


电商

Antvel —— 基于 Laravel 5.* 开发的开源电子商务项目

项目管理

92five app —— 基于 Laravel框架 & Backbone JS 构建,是一个自托管的、基于web的项目管理应用
Scrumwala —— 基于Laravel5,项目管理应用


博客

Wardrobe —— 专注于写作的最小化博客平台


其他

Laravel.com —— Laravel官网源码
Laravel Tricks —— Laravel小技巧&小贴士
Invoice Ninja —— 基于Laravel构建的开源发票及时间跟踪应用
Paperwork —— 基于Laravel 4.X的开源的笔记&归档工具
Cachet —— 基于Laravel 5的开源的状态页系统
StyleCI —— 由 PHP CS Fixer开发,提供PHP代码风格持续集成服务
Podcastwala —— 基于Laravel 5,构建属于你自己的播客网站
Deployer —— 基于Laravel 5.1的、免费的、开源的PHP应用部署工具

RSS Monster —— 基于 Lumen 开发的 RSS 聚合器和阅读器

Koel —— 基于 Laravel 5.1 & Vue.js 开发的酷炫音乐流媒体应用

Attendize —— 基于 Laravel 框架开发的开源门票及活动管理应用

最近个人写了一个小东西,有兴趣可以看看,这里有Laravel 5的视频教程,当然:免费的
Laravel Artist For Web Development 一个基于最新 Laravel 4.2 的中文教程,推荐!
Laravel 4 系列入门教程(一)【最适合中国人的Laravel教程】 这个项目值得你参考下:Laravel大型项目系列教程
(使用Laravel和AmazeUI实现一个多用户博客系统) QQ互联登陆简介 php视频教学网 cloudwarehub.com云件,后台laravel框架,你值得拥有 海尔创客实验室 lab.haier.com
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft