DB::table('users')
->join('contacts', function($join) use ($test)
{
$join->on('users.id', '=',$test)->orOn(...);
})
->get();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community