laravel if syntax
@if (foo)
  // do something
@elseif (bar)
  // do something else
@else
  // do some other thing;
@endiflaravel if syntax
@if (foo)
  // do something
@elseif (bar)
  // do something else
@else
  // do some other thing;
@endiflaravel where condition with if
$query = DB::table('user_ads')
            ->join('ads', 'users_ads.ad_id', '=', 'ads.id')
            ->orderBy($column, $method);
if ($input['search']) {
    $query->where('short_description', $input['search']);
}
if ($input['category']) {
    $query->where('category', $input['category']);
}
$query->join('users', 'users_ads.user_id', '=', 'users.id')
    ->select('ads.id', 'ads.img1', 'ads.short_description', 'ads.category', 'ads.product', 'ads.price', 'users.city')
$result= $query->get();
return $result;Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
