Teklif Detayı

Teklif bilgilerini görüntüleyin

💼
Teklif #{{ $quote->number ?? $quote->id }}
@if (session('status'))
{{ session('status') }}
@endif

Müşteri Bilgileri

Müşteri detayları ve iletişim bilgileri

Müşteri Adı @if($quote->customer) {{ $quote->customer->name }}@if($quote->customer->surname) {{ ' ' . $quote->customer->surname }}@endif @else {{ $quote->customer_name ?? '-' }} @endif
E-posta @if($quote->customer_email) {{ $quote->customer_email }} @else - @endif
Telefon @if($quote->customer_phone) {{ $quote->customer_phone }} @else - @endif
Durum @if($quote->status === 'draft') 📝 Taslak @elseif($quote->status === 'sent') 📤 Gönderildi @elseif($quote->status === 'accepted') ✅ Kabul Edildi @elseif($quote->status === 'rejected') ❌ Reddedildi @else ⏰ Süresi Doldu @endif

Teklif Detayları

Teklif bilgileri ve tarihler

Başlık {{ $quote->title ?? '-' }}
Teklif Tarihi {{ $quote->quote_date?->format('d.m.Y') ?? '-' }}
Geçerlilik Tarihi {{ $quote->valid_until?->format('d.m.Y') ?? '-' }}
KDV Oranı %{{ $quote->tax_rate ?? 0 }}

Ürün/Hizmetler

Teklif kalemleri ve detayları

@if($quote->items && $quote->items->count() > 0)
@foreach($quote->items as $item) @endforeach
Açıklama Miktar Birim Fiyat Tutar
{{ $item->description }} {{ $item->qty }} ₺{{ number_format($item->unit_price, 2, ',', '.') }} ₺{{ number_format($item->line_total, 2, ',', '.') }}
@else

Teklif kalemi bulunamadı

Henüz ürün veya hizmet eklenmemiş

@endif
@if($quote->notes || $quote->terms)

Notlar ve Şartlar

Teklif detayları ve koşullar

@if($quote->notes)

Teklif Notları

{{ $quote->notes }}

@endif @if($quote->terms)

Şartlar ve Koşullar

{{ $quote->terms }}

@endif
@endif

Finansal Özet

Toplam tutarlar

Ara Toplam ₺{{ number_format($quote->subtotal ?? 0, 2, ',', '.') }}
İndirim ₺{{ number_format($quote->discount_amount ?? 0, 2, ',', '.') }}
KDV ({{ $quote->tax_rate ?? 0 }}%) ₺{{ number_format($quote->tax_total ?? 0, 2, ',', '.') }}
Genel Toplam ₺{{ number_format($quote->total ?? 0, 2, ',', '.') }}

Hızlı İşlemler

Teklif işlemleri

PDF İndir
@csrf
@csrf