Hacker News new | ask | show | jobs
by mr_anich 3419 days ago
I've learned quite a bit from reading through the Laravel source - https://github.com/illuminate

edit for details: The authors are quite meticulous (notoriously, every comment in a multi-line comment is 3 characters less than the previous) and stick to the "convention over configuration" mantra no doubt inspired by Ruby on Rails. It's interesting to see how they create abstractions to simplify so many common web dev tasks.

1 comments

I specially like the collection class: https://github.com/illuminate/support/blob/master/Collection... It's almost as natural language.