@extends('layouts.public') @section('title', 'Головна') @section('content') {{-- Акційні товари --}}

Акційні товари

@if(!$saleProducts->isEmpty())
@foreach ($saleProducts as $product) @php switch($product->currency) { case 'USD': $currencySymbol = '$'; break; case 'EUR': $currencySymbol = '€'; break; default: $currencySymbol = '₴'; } @endphp @endforeach
@endif
{{-- Популярні товари --}}
@if(!$popularProducts->isEmpty())
@foreach ($popularProducts as $product) @php switch($product->currency) { case 'USD': $currencySymbol = '$'; break; case 'EUR': $currencySymbol = '€'; break; default: $currencySymbol = '₴'; } @endphp @endforeach
@endif
@endsection