@extends('frontend.layout.app') @section('content')

Wishlist

@if($wishlists->count() > 0)
@foreach ($wishlists as $wish) @endforeach
Image Products Details Price Stock Action Remove
{{ $wish->product->product_name ?? 'product' }} {{ $wish->product->product_name }} @php $wishSp = $wish->product->sp ?? 0; $wishGst = $wish->product->gst ?? 0; $wishPriceWithGst = $wishSp + ($wishSp * $wishGst / 100); @endphp {{ number_format($wishPriceWithGst, 2) }} ({{ $wishGst }}% GST) @if($wish->product->stock > 0) {{ $wish->product->available_stock }} in stock @else Out of stock @endif @if($wish->product->stock > 0) @csrf @else @endif
@else @endif
@endsection