@extends('frontend.layouts.template') @section('content')
@if ($wishlists) @foreach ($wishlists as $wishlist) @if ($wishlist->product) @php $product = $wishlist->product; @endphp @endif @endforeach @endif
  {{ trans('label.product') }} {{ trans('label.price') }} {{ trans('label.stock_status') }} {{ trans('label.remove') }}
@if( $product->product_images ) {{ objectName( $product->subject ) }}_1 @endif {{ objectName( $product->subject ) }} ฿{{ nb($product->price,2) }} @if ($product->status == 'published') In Stock @else Out of Stock @endif {{ trans('label.add_to_cart') }}
@endsection