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

Wishlists

@foreach($wishlists as $wishlist) @endforeach
{{ __('Product Image') }} {{ __('Product name') }} {{ __('Unit price') }} {{ __('Stock status') }} {{ __('Actions') }}
{{ mb_strlen($wishlist->name,'UTF-8') > 35 ? mb_substr($wishlist->name,0,35,'UTF-8').'...' : $wishlist->name }} ${{ $wishlist->price ?? '' }} @if($wishlist->stock_quantity < 1 )
{{ ('Out Of Stock') }}
@else
{{ ('In Stock') }}
@endif
{{-- PRODUCT QUANTITY SECTION ENDS --}} @if($wishlist->stock_quantity < 1)
  • {{ __('Out Of Stock') }}
  • @else
    @csrf
  • @endif
    ×
    @endsection