@extends('layouts.front') @section('content')

Wishlist

@php $total = 0; @endphp @foreach ($items as $key=> $item) @php $price = $item->product->is_discount == 1 ? $item->product->price_striked : $item->product->price; $subtotal = $item->quantity * $price; $total += $subtotal; @endphp @endforeach
No Gambar {{ __('messages.label_product') }} {{ __('messages.label_photo') }} {{ __('messages.label_action') }}
{{ $items->firstItem()+$key }} foto produk {{ $item->product->name }} @if ($item->product->is_discount) Rp {{ MyHelper::rupiah($item->product->price) }}
Rp {{ MyHelper::rupiah($item->product->price_striked ?? 0) }} @else Rp {{ MyHelper::rupiah($item->product->price) }} @endif
{{ $items->links() }}
@endsection @push('js') @endpush