$collectionList = Collection::with(array('items' => function($query) { $user_det...
Oh, and apparently you can probably skip the ->skip(0) unless you need it
$user_details = User::where(''user_name','=',$userName')->skip(0)->take(6)->get(); Skip te...
The Laravel portal for problem solving, knowledge sharing and community building.
The community