Support the ongoing development of Laravel.io →
zenry

zenry

Joined 3 Feb 2014

Statistics

Threads 2
Replies 218
Solutions 25
Articles 0
posted 11 years ago

Amsterdam Hackatron

Anyone going? http://www.amsterdamhackathon.com

0 Likes
0 Replies

Repository tutorial

I've created my very first 2 blog posts about creating and using repositories in Laravel http://blog...

0 Likes
6 Replies
replied 11 years ago

Naming RESTful Controller Methods

Route::controller( '/games', 'GameController', array( 'getRoflLol' => 'happy' // swapped ) );...

0 Likes
replied 11 years ago

Commands not available on production server

did you add artisan to your profile on your local machine? to be on the safe side you can always do...

0 Likes
replied 11 years ago

Children Models

I really like @netorious solution but there is also something called Single Table Inheritance @Shawn...

0 Likes
replied 11 years ago

How to perform a tag search ?

$tags = ['a', 'b']; $posts = Post::whereHas('tags', function($query) use($tags) { $query->wh...

0 Likes
replied 11 years ago

Eager Loading with constrains -> load post based on category name

$category = 'Laravel'; $posts = Post::with('user', 'category')->whereHas('category', function($q...

0 Likes
Solved

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2026 Laravel.io - All rights reserved.