Receiver İnformations

Name Surname      {{ $order->contact_info->name }} {{ $order->contact_info->surname }}
Address      {{ $order->shipping_info->address }}
Country      {{ db('region')->where('id', $order->shipping_info->country)->get()->first()->name }}
Phone      {{ $order->shipping_info->phone }}
Email      {{ $order->shipping_info->email }}

Cargo information

Payment      @switch($order->payment_type) @case('pay_at_the_door') Pay at the door @break @case('pos') Virtual Pos @break @case('eft') EFT/Transfer @break @endswitch
Cargo company      {{ $order->cargo->name }}
Cargo Type      Shipper Pays / Buyer Must Pay

Products

@foreach($products as $key => $product) @endforeach
Product
Piece Stock Code Barcode Amount
  {{ $key+1 }}      {{ $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
Subtotal:     
{{ CURRENCY . $order->fees->total }}
Tax (%{{ TAX }}):     
{{ CURRENCY . $order->fees->tax }}
Subtotal (Including Tax):     
{{ CURRENCY . $order->fees->general_total }}
Discount Amount:     
{{ CURRENCY . $order->fees->sale }}
Cargo:     
{{ CURRENCY . num_format($order->cargo_feature['fee']) }}
Grand total:     
{{ CURRENCY . $order->fees->total_sale }}