{{ $site['company_name'] ?? 'Şirket Adı' }}
{{ $site['company_tagline'] ?? 'Profesyonel Hizmetler' }}

{{ $site['company_address'] ?? 'Şirket Adresi' }}

Tel: {{ $site['contact_phone'] ?? 'Telefon' }} | E-posta: {{ $site['contact_email'] ?? 'E-posta' }}

Web: {{ $site['company_website'] ?? 'www.sirket.com' }}

TEKLİF
#{{ $quote->number }}
{{ $quote->quote_date ? $quote->quote_date->format('d.m.Y') : '' }}
Teklif Edilen
{{ $quote->customer_name ?? 'Müşteri Adı' }}
@if($quote->customer_email)

E-posta: {{ $quote->customer_email }}

@endif @if($quote->customer_phone)

Telefon: {{ $quote->customer_phone }}

@endif
Durum: @switch($quote->status) @case('draft') Taslak @break @case('sent') Gönderildi @break @case('accepted') Kabul Edildi @break @case('rejected') Reddedildi @break @case('expired') Süresi Doldu @break @default {{ $quote->status }} @endswitch
@if($quote->valid_until)
Geçerlilik: {{ $quote->valid_until->format('d.m.Y') }}
@endif @if($quote->title)
Başlık: {{ $quote->title }}
@endif
Teklif Kalemleri
@foreach($quote->items as $item) @endforeach
Açıklama Miktar Birim Fiyat Tutar
{{ $item->description }} {{ number_format($item->qty, 2, ',', '.') }} ₺{{ number_format($item->unit_price, 2, ',', '.') }} ₺{{ number_format($item->line_total, 2, ',', '.') }}
@if($quote->discount_amount > 0) @endif @if($quote->tax_rate > 0) @endif
Ara Toplam: ₺{{ number_format($quote->subtotal, 2, ',', '.') }}
İndirim: -₺{{ number_format($quote->discount_amount, 2, ',', '.') }}
KDV ({{ number_format($quote->tax_rate, 0) }}%): ₺{{ number_format($quote->tax_amount, 2, ',', '.') }}
GENEL TOPLAM: ₺{{ number_format($quote->total, 2, ',', '.') }}
@if($quote->notes)
Notlar
{{ $quote->notes }}
@endif @if($quote->terms)
Şartlar ve Koşullar
{{ $quote->terms }}
@endif