@extends('master') @section('seo_title', 'Wishlist') @section('seo_keywords', '') @section('seo_description', '') @section('content')
@include('layout.breadcrumbs', ['page_title' => __('messages.WISHLIST')])
@include('account.dashboard.sidebar')

@lang('messages.WISHLIST')

@if (count($wishlist) > 0)
@foreach ($wishlist as $item) @php $isInSale = $item['product']['regularPrice'] > $item['product']['salePrice']; @endphp
@if ($isInSale)
-{{ number_format($item['product']['promocao_valor'], 0, '', '') }}{{ $item['product']['promocao_tipo'] == 1 ? Helper::currencySymbol() : '%' }} off
@endif {{ $item['product']['name'] }}
{{ $item['product']['name'] }}
@if ($isInSale)

{{ Helper::formatAsCurrency($item['product']['regularPrice']) }} {{ Helper::formatAsCurrency($item['product']['salePrice']) }}

@else
{{ Helper::formatAsCurrency($item['product']['salePrice']) }}
@endif
@if ($item['product']['stock'] > 0)
@lang('messages.ADD_TO_CART')
@endif @lang('messages.REMOVE')
@endforeach
@else
@lang('messages.WISHLIST_NO_PRODUCTS')
@endif
@endsection