{{-- $product: Product --}} @php $primary = $product->images->firstWhere('is_primary', true) ?? $product->images->first(); [$minPrice, $maxPrice] = $product->effectivePriceRange(); $inStock = $product->isInStock(); @endphp
@if ($primary) {{ $product->name }} @else
Astro Bilge
@endif {{ $inStock ? 'Stokta' : 'Tükendi' }}
@if ($product->category) {{ $product->category->name }} @endif

{{ $product->name }}

@if ($product->short_description)

{{ \Illuminate\Support\Str::limit($product->short_description, 90) }}

@endif
@if ($minPrice == $maxPrice) {{ number_format($minPrice, 2, ',', '.') }} ₺ @else {{ number_format($minPrice, 2, ',', '.') }} ₺'den başlayan fiyatlarla @endif
Ürünü İncele