@extends('Frontend.layout.main') @section('head') {{$pageData->meta_title() ?? 'Eldiar'}} @endsection @section('content') @include('Frontend.inc.banners')

Your Wishlist

@if(count($products)) @foreach($products as $key => $product) @php $media = url("/storage/products/no-image.jpg"); if($product->image() != null && file_exists(storage_path('app/public/products/'.$product->image()))): $media = url("/storage/products/".$product->image()); endif; @endphp @endforeach
  PRODUCT DESCRIPTION  
{{$key + 1}} add-image

{{$product->title ?? ''}}

PRODUCT CODE : {{$product->code ?? ''}}

BRAND :{{$product->brand->title ?? ''}}

SIZE : {{$product->size ?? ''}}

@endif
@if(!count($products))

Oops! Seems you have no products in your wishlist. Explore our offerings.


@endif
@if(count($products)) Send Enquiry Empty Cart @endif
@endsection @section('script') @if ($errors->any()) @endif @endsection