{{ $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
@if($product->productCategory)
{{ $product->productCategory->name }}
@endif
@empty
@endforelse
@if($products->hasPages())
{{ $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)
@if($product->price_display_from)
başlayan
@endif
{{ number_format($product->price_from, 0, ',', '.') }} ₺
@if($product->price_original > 0 && $product->price_original > $product->price_from)
{{ number_format($product->price_original, 0, ',', '.') }} ₺
@endif
@endif
Detayları Göster
Ürün bulunamadı
Filtreleri değiştirerek tekrar deneyebilirsiniz.
{{ $products->appends(request()->query())->links('pagination::bootstrap-5') }}
@endif