@extends('admin.layout.index') @section('title', '#' . $order->uniq) @section('content')

Teslimat

Ad Soyad:
{{ $order->shipping_info->name }} {{ $order->shipping_info->surname }}

{{ $order->shipping_info->address }}

{{ db('region')->where('id', $order->shipping_info->city)->get()->first()->name }}/{{ db('region')->where('id', $order->shipping_info->country)->get()->first()->name }}

E-posta Adresi:
{{ $order->shipping_info->email }}

Telefon:
{{ $order->shipping_info->phone }}

Kargo:
{{ $order->cargo->name }}

Faturalandırma

Ünvan: {{ $order->contact_info->title ?? "" }}

Adres: {{ $order->contact_info->bill_address ?? "" }}

Vergi Numarası: {{ $order->contact_info->tax_number ?? "" }}

Vergi Dairesi: {{ $order->contact_info->tax_office ?? "" }}

@foreach($products as $product) @if($product->type == 'variant') @else @endif @endforeach
Ürün Miktar Stok Kodu Barkod Tutar
{{ $product->name }} @foreach($product->varaint_value_detail['name'] as $name) {{ $name }}    @endforeach
x{{ $product->total }} {{ $product->varaint_value_detail['stock_code'] }} {{ $product->varaint_value_detail['stock_barcode'] }} {{ CURRENCY . $product->total_fee }}
{{ $product->name }}
x{{ $product->total }} {{ $product->stock_code }} {{ $product->stock_barcode }} {{ CURRENCY . $product->total_fee }}
@isset($order->fees->sale) @if($order->fees->sale != "0,00") @endif @endisset @isset($order->fees->coupon) @endisset
Ara Toplam:     {{ CURRENCY . $order->fees->tax }}
Vergi (%{{ TAX }}):     {{ CURRENCY . $order->fees->total }}
Ara Toplam (Vergi Dahil):     {{ CURRENCY . $order->fees->general_total }}
İndirim Tutarı:     {{ CURRENCY . $order->fees->sale }}
Kupon ({{ $order->fees->coupon->code }}):     {{ $order->fees->coupon->sale }}{{ $order->fees->coupon->type == "0" ? "%" : CURRENCY }}
Kargo:     {{ CURRENCY . num_format($order->cargo_feature['fee']) }}
Genel Toplam:     {{ CURRENCY . $order->fees->total_sale }}
@if($order->status == "2" || $order->status == "3" || $order->status == "4" || $order->status == "5" || $order->status == "0") @if($invoice) Fatura İndir @endif @endif
@isset($order->payment_info->status)
@if($order->payment_info->status == 'Sanal pos ödemesi başarılı bir şekilde gerçekleştirildi.') {{ $order->payment_info->status }} @else Ödeme Başarısız! @endif
@endisset
@if($order->status == "2" || $order->status == "3" || $order->status == "4" || $order->status == "5" || $order->status == "0") @if(!$invoice)
{!! $csrf !!}
@endif @endif @if($order->status == "4" || $order->status == "5")
{!! $csrf !!}
@if(!isset($order->shipping_info->tracking_code)) Lütfen kargo takip kodunu giriniz! @endif
@endif
@endsection @section('scripts') @endsection