@php
if ($gs->switch_highlight_currency) {
$highlight = $wishlist->firstCurrencyPrice();
$small = $wishlist->showPrice();
} else {
$highlight = $wishlist->showPrice();
$small = $wishlist->firstCurrencyPrice();
}
@endphp
@foreach($wishlists as $wishlist)
@if(!empty($sort))
@if($gs->is_rating == 1)
@endif
{{ $highlight }}{{ $small }}
@else
@if($gs->is_rating == 1)
@endif
{{ $highlight }}{{ $small }}
@endif
@endforeach
@if(isset($sort))
{!! $wishlists->appends(['sort' => $sort])->links() !!}
@else
{!! $wishlists->links() !!}
@endif