@if(!$offer->canComplete())
Teklifi yanıtlamak için lütfen tüm ürünlerin stok durumunu kontrol edin.
@endif
@foreach ($offer->products as $cartProduct)
@if($cartProduct->product)
|
{{ $cartProduct->product->title }}
- {{ $cartProduct->product->code }}
- {{ $cartProduct->product->category?->title }}
-
{{ $cartProduct->qty }} x {{ $cartProduct->product->getPrice() }}
|
|
@if($cartProduct->production_time)
{{ $cartProduct->production_time->title }}
@endif
@if(!$cartProduct->production_time && $cartProduct->stock == "WAITING")
Üretim Bilgisi Bekleniyor
@endif
|
@else
| Bu ürün silinmiş |
@endif
@endforeach
Müşteri Bilgileri
| Adı ve Soyadı |
{{ $offer?->owner?->name }} |
| Firma Ünvanı |
{{ $offer?->owner?->company?->name }} |
| E-posta |
{{ $offer?->owner?->email }} |
| Telefon |
{{ $offer?->owner?->phone }} |
| Dili |
{{ $offer?->owner?->locale }} |
| Kayıt Tarihi |
{{ $offer?->owner?->created_at?->locale('tr')?->translatedFormat('d F Y') }} |
Tercih Bilgileri
| Para Birimi |
{{ $offer?->currency?->title }} |
| İletişim Tercihi |
{{ $offer->getTranslatedContactType('tr') }} |
Teklif Bilgileri
| Müşteri Notu |
{{ $offer->user_notes }} |
| Oluşturma Tarihi |
@if ($offer->offer_request_at)
{{ Carbon\Carbon::parse($offer->offer_request_at)->locale('tr')?->translatedFormat('d F Y') }}
@endif
|
Fiyat Bilgileri
| Toplam Ara Tutar |
{{ money($offer->sub_total_price, 'TRY') }} |
| Toplam Sepet Tutarı |
{{ money($offer->total_price, 'TRY') }} |