Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
select * from offers where category_id = 2 and (is_active = true or is_archive = true);
$offers = Offer::where('category_id',$activeCat->id)->get();
$offers = Offer::where(function($query) { $query->where('is_active', true)->orWhere('is_archive', true); })->where('category_id',$activeCat->id)->get();