Live data from Hacker News

Laravel 4.0 Released

github.com

1–10 of 24 posts

Re: Laravel 4.0 Released

#4
post #3

How does this compare to other PHP frameworks?

It's very easy to get going with and to learn.

It has good documentation (available here[0] for version four) and the code is filled with comments if the documentation isn't enough.

It uses "Eloquent ORM" which makes it so easy to handle data with Active Record.

RESTful controllers makes it easy to handle the request.

And much more, which is why you need to read the documentation to understand why it's different.

[0] http://four.laravel.com

Re: Laravel 4.0 Released

#7
Personally I like to follow coding standards when writing app in given framework, so I always start with looking at what they look like and I find that very often there is something that I personally find off e.g. in lavarels case they use tabs for indentation or classes have braces in the same line as class name, but not methods. Other than that project looks great!

Re: Laravel 4.0 Released

#8
I really liked the static method shortcuts Laravel has for almost everything. Too bad it's almost as slow as Symfony, because it uses so many of it's (great) components.

Re: Laravel 4.0 Released

#10
post #8

I really liked the static method shortcuts Laravel has for almost everything. Too bad it's almost as slow as Symfony, because it uses so many of it's (great) components.

Does anyone have any benchmarks?

I've only made a couple of sites using Laravel but I actually really like it and haven't hit any performance bottlenecks yet.

Post reply on HN