简洁明了、优雅的语法。
想要源代码优雅、简约、且易读?你会发现完全符合你的需求,因为 Laravel 是专门为你设计的,如果需要任何入门帮助,请查阅 Laracasts 还有我们 优秀的文档。
为 WEB 艺术家创造的 PHP 框架。
	<?php
	class Idea extends Eloquent {
		/**
		 * Dreaming of something more?
		 *
		 * @with Laravel
		 */
		 public function create()
		 {
		 	// Have a fresh start...
		 }
	}
		 
		
	短时间内交付优雅的项目代码。
	class Purchase implements ShouldBeQueued {
		/**
		 * Purchase a new podcast.
		 */
		 public function handle(Repository $repo)
		 {
		 	foreach ($this->purchases as $purchase)
		 	{
		 		//
		 	}
		 }
	无论你是独自开发,还是二十人的团队,Laravel 都能让你耳目一新。 使用 migrations 和 结构生成器让团队里面的每一个人都能同步 Laravel 数据库。
	~/Apps $ php artisan make:migration create_users_table
	Migration created successfully!
	~/Apps $ php artisan migrate --seed
	Migrated: 2015_01_12_000000_create_users_table
	Migrated: 2015_01_12_100000_create_password_resets_table
	Migrated: 2015_01_13_162500_create_projects_table
	Migrated: 2015_01_13_162508_create_servers_table
	通过 神奇的 ORM、轻松上手的 路由器、强大的 队列操作库 和 简便的用户认证系统,这些工具让你感受到现代化 PHP 的高可维护性和便捷性。我们尽力打造这些小东西, 只为了帮助你构建伟大的应用。
	Route::resource('photos', 'PhotoController');
	/**
	 * Retrieve A User...
	 */
	Route::get('/user/{id}', function($id)
	{
		return User::with('posts')->firstOrFail($id);
	})
	 
			
		彻底改变你构建网站的方式。
