@extends($activeTemplate . 'layouts.master') @php $orderBy = request()->order_by; $sortByKeys = [ 'title' => 'Title', 'published_at' => 'Date Published', 'last_updated' => 'Date Updated', 'avg_rating' => 'Rating', ]; @endphp @section('content')
@lang('Favorite Items')
@foreach ($favoriteProducts as $product)
{{ __(@$product->title) }}
{{ showAmount($product->price) }}
@endforeach
@include($activeTemplate . 'user.product.add_to_collection') @endsection @push('script') @endpush @push('style') @endpush