@if ($wishlist->count() > 0)
@foreach ($wishlist as $wish) @php $wish_inventory_translation = $wish->inventory->translations->where('language_id',getLocaleId())->first(); @endphp
    @if ($wish->inventory->free_shipping == 1)
  • @lang('theme.free_shipping')
  • @endif @if ($wish->inventory->stuff_pick == 1)
  • @lang('theme.stuff_pick')
  • @endif @if ($wish->inventory->hasOffer())
  • @lang('theme.percent_off', ['value' => get_percentage_of($wish->inventory->sale_price, $wish->inventory->offer_price)])
  • @endif
{!! $wish_inventory_translation->title ?? $wish->inventory->title !!} {!! $wish_inventory_translation->title ?? $wish->inventory->title !!}
{{-- --}} @lang('theme.button.quick_view') @lang('theme.button.buy_now') {!! Form::open(['route' => ['wishlist.remove', $wish], 'method' => 'delete', 'class' => 'data-form']) !!} {!! Form::close() !!}
@php $ratings = $wish->inventory->ratings @endphp @if ($ratings) @for ($i = 0; $i < 5; $i++) @if ($ratings - $i >= 1) @elseif($ratings - $i < 1 && $ratings - $i > 0) @else @endif @endfor @endif @if (isset($count) && $count) @if (isset($shop) && $shop) ({{ get_formated_decimal($ratings, true, 1) }}) {{ trans_choice('theme.reviews', $count, ['count' => $count]) }} @elseif(isset($item)) ({{ get_formated_decimal($ratings, true, 1) }}) {{ trans_choice('theme.reviews', $count, ['count' => $count]) }} @endif @endif
{!! $wish_inventory_translation->title ?? $wish->inventory->title !!}
@lang('theme.availability'): {{ $wish->inventory->stock_quantity > 0 ? trans('theme.in_stock') : trans('theme.out_of_stock') }}
{!! get_formated_price($wish->inventory->current_sale_price(), config('system_settings.decimals', 2)) !!} @if ($wish->inventory->hasOffer()) {!! get_formated_price($wish->inventory->sale_price, config('system_settings.decimals', 2)) !!} @endif
{{-- @include('theme::layouts.pricing', ['item' => $wish->inventory])--}}
{!! $wish_inventory_translation->description ?? $wish->inventory->description !!}
  • {{ $wish_inventory_translation->condition ?? $wish->inventory->condition }}
@endforeach
@else

@lang('theme.empty_wishlist')
@lang('theme.button.shop_now')

@endif