orwhere and where in laravel 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: laravel where and where
Table::where('Column', Value)->where('NewColumn', Value)->get();