@extends('layouts.main') @section('title', __('home.seo.title')) @section('description', __('home.seo.description')) @section('content')
@include('auth.customer.partials.header')
{{ __('customer.wishlist') }}
@if(count($wishlist) > 0) @foreach($wishlist as $id => $details) @if($details->product->stock_qty > 0 && $details->product->purchasable == true) @else @endif @endforeach
{{ __('customer.product') }} {{ __('customer.price') }} {{ __('customer.availability') }} {{ __('customer.actionsColumn') }}
@if($details->product['img_01'] != null && Storage::exists($details->product['img_01'])) {{\Str::of($details->product['img_01'])->basename('.jpg')}} @else {{\Str::of('/uploads/default/default.jpg')->basename('.jpg')}} @endif
{{$details->product->item_name}}
{{ priceView($details->product->price) }} @if($details->product->stock_qty > 0 && $details->product->purchasable == true) {{ __('customer.in_stock') }} @else {{ __('customer.not_available') }} @endif {{ __('customer.add_to_cart') }}
@else

{{ __('customer.no_favorites') }}

@endif
@endsection