@php // Clear Filter Button $clearFilterBtn = \App\Services\UrlGen::getCityFilterClearLink($cat ?? null, $city ?? null); /* * Check if the City Model exists in the Cities eloquent collection * If it doesn't exist in the collection, * Then, add it into the Cities eloquent collection */ if (isset($cities, $city) && !collect($cities)->contains($city)) { collect($cities)->push($city)->toArray(); } @endphp {{-- City --}}