Here is my blade file foreach loop works perfectly but when i want to check the value exist or not then it always show not
@foreach ($value as $names)
<h3>{{$names}}</h3>
@endforeach
@if($names =="abc")
<h2>Found</h2>
@else
<h3>Not</h3>
@endif
and here is my controller
public function load_name()
{
$values = ['abc','xyz','yyy'];
return view('name',['value' => $values]);
}
and route
Route::get("names",[UserController::class,'load_name']);