Ejemplo en doc:
DB::table('users')
->whereExists(function($query)
{
$query->select(DB::raw(1))
->from('orders')
->whereRaw('orders.user_id = users.id');
})
->get();
Pero, ¿qué pasa si necesito usar una variable externa como esa?
->where('city_id', '=', $this->city->id)
->where(function($query)
{
$query->where('name', 'LIKE', '%'.$searchQuery.'%')
->orWhere('address', 'LIKE', '%'.$searchQuery.'%')
})
Por ahora, creé una nueva propiedad y accedí a ella $this->
, pero ¿hay alguna forma más conveniente?