Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save waqasraza123/6c630b690fb32dcb47f421912a23783d to your computer and use it in GitHub Desktop.
Save waqasraza123/6c630b690fb32dcb47f421912a23783d to your computer and use it in GitHub Desktop.
if (isset($options['event_host'])) {
$query->join('event_hosts', 'events.id', '=', 'event_hosts.event_id')
->orWhere(function ($q) use ($options, $query){
foreach ($options['event_host'] as $e){
$query = $q->where('event_hosts.host_name', 'LIKE', '%'.$e.'%');
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment