@extends('layouts.store') @section('title', 'My Favorites') @section('content')
Saved

My Favorites

@if (session('status'))

{{ session('status') }}

@endif
@forelse ($favorites as $favorite)
{{ $favorite->product->name }} {{ $favorite->product->category->name }}

{{ $favorite->product->name }}

{{ \App\Models\SiteSetting::formatPrice($favorite->product->sellingPrice()) }} @if ($favorite->product->compareAtPrice()) {{ \App\Models\SiteSetting::formatPrice($favorite->product->compareAtPrice()) }} @endif
{{ $favorite->product->stock }} in stock
@csrf
@csrf @method('DELETE')
@empty

No favorites yet.

@endforelse
@endsection