I have this eloquent query
 $result= Result::query()
            ->where('city_id', '=', $search_city)
            ->get();
        } 
then inside loop
 foreach($result as $row)
                {
                    if(isset($row->user_id) && $row->user_id!=0)
                    {
                        $UserDetails = User::where('id',$row->user_id)->first();
                        if($UserDetails) 
                        {
                            if($UserDetails->type=='normal user')
                            {
                              // remove this specific row from result 
                            }
                
                        }
                    } 
                }
inside if condition if specific condition met i want to remove only that particular row from the result.
 return view('index', compact('result'));
Any solution Thanks
via Chebli Mohamed
 
Aucun commentaire:
Enregistrer un commentaire