@include('layouts.header')
@if(session('success'))
{{ session('success') }}
@endif
@forelse($items as $item) @empty @endforelse
Product Price Added On Actions
{{ $item['product_name'] }}
{{ $item['product_name'] }}
{{ number_format($item['product_price'], 2) }} @if(!empty($item['added_at'])) {{ \Carbon\Carbon::parse($item['added_at'])->format('d M Y') }} @else - @endif
{{-- Add to cart --}}
@csrf
{{-- Remove from wishlist --}}
@csrf
Your wishlist is empty.
{{-- Bottom buttons --}}
@if(count($items)) @endif
@include('layouts.footer')
+