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