- Kategori
- {{ $product->category->name }}
- Durum
-
{{ $product->is_available ? 'Aktif' : 'Pasif' }}
- Öne Çıkan
-
{{ $product->is_featured ? 'Evet' : 'Hayır' }}
- Online Sipariş
-
{{ $product->is_online_orderable ? 'Açık' : 'Kapalı' }}
- Ücretsiz Teslimat
-
{{ $product->has_free_delivery ? 'Evet' : 'Hayır' }}
- Güncel Fiyat
- {{ number_format($product->price, 2) }} ₺
@if($product->discounted_price)
- İndirimli Fiyat
- {{ number_format($product->discounted_price, 2) }} ₺
@endif
Açıklama
{!! $product->description !!}
@if($product->sub_description)
Alt Açıklama
{!! $product->sub_description !!}
@endif