@if($cart->customer->image) {{ trans('app.avatar') }} @else {{ trans('app.avatar') }} @endif
{{ trans('app.customer') }}: {{ $cart->customer->getName() }}
{{ trans('app.email') }}: {{ $cart->customer->email }}
{{ trans('app.member_since') }}: {{ $cart->customer->created_at->toFormattedDateString() }}
  • {{ trans('app.items') }}
  • {{ trans('app.cart_info') }}
  • {{ trans('app.invoice') }}
@if(count($cart->inventories) > 0) @foreach($cart->inventories as $item ) @endforeach @else @endif
{{ trans('app.image') }} {{ trans('app.description') }} {{ trans('app.quantity') }} {{ trans('app.price') }} {{ trans('app.total') }}
@if($item->image) {{ trans('app.image') }} @elseif($item->product->featuredImage) {{ trans('app.image') }} @else {{ trans('app.image') }} @endif {{ $item->pivot->item_description }} {{ $item->pivot->quantity }} {{ get_formated_currency($item->pivot->unit_price, 2) }} {{ get_formated_currency($item->pivot->quantity * $item->pivot->unit_price, 2) }}
{{ trans('help.empty_cart') }}
@if($cart->shippingRate) @endif @if($cart->shippingPackage) @endif @if($cart->message_to_customer) @endif @if($cart->admin_note) @endif
{{ trans('app.created_at') }}: {{ $cart->created_at->toDayDateTimeString() }}
{{ trans('app.cart') }}: {{ $cart->id }}
{{ trans('app.carrier') }}: {{ $cart->shippingRate->name }} @if($cart->carrier) {{ trans('app.by') . ' ' . $cart->carrier->name }} @endif
{{ trans('app.packaging') }}: {{ $cart->shippingPackage->name }}
{{ trans('app.shipping_address') }}: {{ $cart->shipping_address }}
{{ trans('app.message_to_customer') }}: {!! $cart->message_to_customer !!}
{{ trans('app.admin_note') }}: {!! $cart->admin_note !!}
{{ trans('app.grand_total') }}: {{ get_formated_currency($cart->grand_total, 2) }}
{{ trans('app.total') }}: {{ get_formated_currency($cart->total, 2) }}
{{ trans('app.discount') }}: - {{ get_formated_currency($cart->discount, 2) }}
{{ trans('app.shipping') }}: {{ get_formated_currency($cart->shipping, 2) }}
{{ trans('app.handling') }}: {{ get_formated_currency($cart->handling, 2) }}
{{ trans('app.taxes') }}: {{ get_formated_currency($cart->taxes, 2) }}
{{ trans('app.billing_address') }}: {{ $cart->billing_address }}