laravel/readme.md

28 lines
900 B
Markdown
Raw Normal View History

2011-08-02 22:51:38 -05:00
## Laravel - A Clean & Classy PHP Framework
Laravel is a clean and classy framework for PHP web development. Freeing you from spaghetti code, Laravel helps you create wonderful applications using simple, expressive syntax. Development should be a creative experience that you enjoy, not something that is painful. Enjoy the fresh air.
### Beautifully Expressive Syntax
Stay true to the web with RESTful routing:
2011-08-03 22:10:07 -05:00
'GET /' => function()
{
return View::make('home/index');
}
2011-08-02 22:51:38 -05:00
Redirect to a named route and flash something to the session:
2011-08-03 22:10:07 -05:00
return Redirect::to_profile()->with('message', 'Welcome Back!');
2011-08-02 22:51:38 -05:00
Retrieve a blog post and eagerly load the comments using Eloquent ORM:
2011-08-03 22:10:07 -05:00
$posts = Post::with('comments')->find(1);
2011-08-02 22:51:38 -05:00
Get input from the previous request to re-populate a form:
2011-08-03 22:10:07 -05:00
echo Input::old('email');
2011-08-02 22:51:38 -05:00
### Ready To Learn More?
Check out the [official documentation](http://laravel.com).