@extends('frontend.layouts.user_panel') @section('panel_content')
{{ translate('Wishlist')}}
@forelse ($wishlists as $key => $wishlist) @if ($wishlist->product != null)
{{ $wishlist->product->getTranslation('name') }}
{{ renderStarRating($wishlist->product->rating) }}
@if(home_base_price($wishlist->product) != home_discounted_base_price($wishlist->product)) {{ home_base_price($wishlist->product) }} @endif {{ home_discounted_base_price($wishlist->product) }}
@endif @empty
Image
{{ translate("There isn't anything added yet")}}
@endforelse
{{ $wishlists->links() }}
@endsection @section('modal') @endsection @section('script') @endsection