@extends('layout')
@section('title', 'Вподобані товари')
@section('content')
Вподобані товари
@if ($favoriteProducts->isEmpty())
Ви ще не вподобали жодного продукту
@else
@foreach ($favoriteProducts as $product)
@include('components.product-item', ['product' => $product])
@endforeach
@endif
 }})
@include('components.order-form')
@endsection