@include('layouts.head') Ürünler | Düğün Market
@include('layouts.header')
  1. Anasayfa
  2. Ürünler
Filtreler
Arama
@foreach($categories as $cat)
id, (array) request('categories', [])) ? 'checked' : '' }}>
@endforeach
Temizle
{{ $products->total() }} ürün bulundu
@forelse($products as $product) @php $coverImage = $product->galleryMedia->where('media_type', 'image')->first(); $coverSrc = $coverImage ? asset('storage/' . $coverImage->file_path) : asset('storage/assets/images/no-image.jpg'); @endphp
{{ $product->name }} @if($product->productCategory) {{ $product->productCategory->name }} @endif

{{ $product->name }}

@if($product->business)
{{ $product->business->name }}
@endif @if($product->short_description)

{{ Str::limit($product->short_description, 80) }}

@endif
@if($product->price_from > 0)
{{ number_format($product->price_from, 0, ',', '.') }} ₺ @if($product->price_original > 0 && $product->price_original > $product->price_from) {{ number_format($product->price_original, 0, ',', '.') }} ₺ @endif
@else
Teklif alınabilir
@endif Detayları Göster
@empty
Ürün bulunamadı

Filtreleri değiştirerek tekrar deneyebilirsiniz.

@endforelse
@if($products->hasPages())
{{ $products->appends(request()->query())->links('pagination::bootstrap-5') }}
@endif
@include('layouts.footer')