@extends('admin.layouts.app') @section('title', $product->name) @section('content')

{{ $product->name }}

Düzenle Geri

Ürün Bilgileri

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
@if($product->allergens->isNotEmpty())

İçindekiler

@foreach($product->allergens as $allergen)
{{ $allergen->name }}
@endforeach
@endif

Ürün Görselleri

@if($product->images->isNotEmpty())
@foreach($product->images as $index => $image)
{{ $product->name }}
@endforeach
@else

Ürün görseli bulunmamaktadır.

@endif
@endsection @push('styles') @endpush