@extends('master.front') @section('title') {{__('Wishlist')}} @endsection @section('content')

รายการโปรด

@include('includes.user_sitebar')
favorite
รายการโปรด
{{--
--}}
สินค้า
ราคา
สถานะสินค้า
จัดการ
@foreach ($wishlist_items as $product)
...
รหัสสินค้า: {{$product->sku}}

{{$product->name}}

{{PriceHelper::grandCurrencyPrice($product)}}

{{$product->stock == 0 ? __('Out of stock') : __('สินค้าพร้อมส่ง')}}
@endforeach
{{-- --}}
{{--
@include('includes.user_sitebar')
@if ($wishlist_items->count() > 0) @endif @if ($wishlist_items->count() > 0) @foreach ($wishlist_items as $product) @endforeach @else @endif
{{__('Wishlist Product')}}{{__('Clear Wishlist')}}
Product

{{$product->name}}

{{PriceHelper::grandCurrencyPrice($product)}}
{{__('Availability')}}:
{{$product->stock == 0 ? __('Out of stock') : __('In Stock')}}
@if ($product->is_stock()) @if ($product->item_type != 'affiliate') {{__('Add To Cart')}} @endif @else {{__('Details')}} @endif
{{__('No Product Found')}}

--}} @endsection