Try use Eloquent ORM you can read the documentation here http://laravel.com/docs/eloquent
@darwingluague9001 Thank you for your answer. I solved it adding this:
foreach($combined as $element)
{
$uid = $element->user_id;
$element->user = DB::table('users')->select('id','pic')->where('id',$uid)->get();
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community