Danh sách yêu thích của bạn

@if($wishList->isEmpty())

Danh sách yêu thích của bạn hiện tại trống.

@else @foreach($wishList as $item)
@csrf @method('DELETE')
{{ $item->product->product_name }}
{{ Str::limit($item->product->product_name, 30, '...') }}

Giá: {{ number_format($item->product->price, 0, ',', '.') }}₫

@csrf
@endforeach @endif