@if ($cart->bid)
@endif
@if ($cart->shippingRate)
@endif
@if (is_incevio_package_loaded('packaging') && $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('packages.auction.bid_wins_at') }}: |
{{ optional($cart->bid->accepted_at)->toDayDateTimeString() }}
|
{{ 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, config('system_settings.currency.id')) }}
|
{{ trans('app.total') }}: |
{{ get_formated_currency($cart->total, 2, config('system_settings.currency.id')) }} |
{{ trans('app.discount') }}: |
- {{ get_formated_currency($cart->discount, 2, config('system_settings.currency.id')) }} |
{{ trans('app.shipping') }}: |
{{ get_formated_currency($cart->shipping, 2, config('system_settings.currency.id')) }} |
{{ trans('app.handling') }}: |
{{ get_formated_currency($cart->handling, 2, config('system_settings.currency.id'), config('system_settings.currency.id')) }} |
{{ trans('app.taxes') }}: |
{{ get_formated_currency($cart->taxes, 2, config('system_settings.currency.id')) }} |
{{ trans('app.billing_address') }}: |
{{ $cart->billing_address }} |