laravel where orwhere andwhere code example
Example 1: laravel orWhere
$camps = $field->camps()->where('status', 0)->where(function ($q) {
$q->where('sex', Auth::user()->sex)->orWhere('sex', 0);
})->get();
Example 2: orwhere in wherehas laravel
User::select()->whereHas('student', $function($q) {
$q->where('name', $value)
->orWhere('age', $value2);
});