@foreach($wishlists as $wishlist) @if(!empty($sort))

{{ $wishlist->name }}

{{ $wishlist->showPrice() }}{{ $wishlist->showPreviousPrice() }}
@else

{{ $wishlist->product->name }}

{{ $wishlist->product->showPrice() }}{{ $wishlist->product->showPreviousPrice() }}
@endif @endforeach
@if(isset($sort))
{!! $wishlists->appends(['sort' => $sort])->links() !!}
@else
{!! $wishlists->links() !!}
@endif