@extends('Layouts/' . $layout) @section('submenu') @include( 'Plugins/Payment/Views/Elements/Order/list_submenu', [ 'extra' => view( 'Plugins/Payment/Views/Elements/Order/add_submenu', ['venue' => isset($venue) ? $venue : null] ) ] ) @endsection @section('content') @if ($layout != 'print') Print @endif

{{ __('Bookings Export Readings') }}

{{ __('Gross') }} {{ amount($data->actual_price, ['to' => $currency->id]) }}
{{ __('Fees') }} {{ amount($data->fee, ['to' => $currency->id]) }}
{{ __('Net') }} {{ amount($data->price, ['to' => $currency->id]) }}
{{ __('Gratuity Fee') }} {{ amount($data->tip, ['to' => $currency->id]) }}
@if (isset($data1) && $data1)

{{ __('Payments Splitdown by Order Date') }}

@foreach ($data1 AS $row) @endforeach
@t('Payment Type') @t('Amount')
{{ ( isset($payment_labels->{$row->type}) && $payment_labels->{$row->type} ? $payment_labels->{$row->type} : $row->type ) }} {{ amount($row->amount, ['to' => $currency->id]) }}
@endif @if (isset($data3) && $data3)

{{ __('Payments Splitdown by Created Date') }}

@foreach ($data3 AS $row) @endforeach
@t('Payment Type') @t('Amount')
{{ ( isset($payment_labels->{$row->type}) && $payment_labels->{$row->type} ? $payment_labels->{$row->type} : $row->type ) }} {{ amount($row->amount, ['to' => $currency->id]) }}
@endif @if (isset($data2) && $data2)

{{ __('Nominal Categories Splitdown') }}

@foreach ($data2 AS $row) @endforeach
@t('Nominal') @t('Tax') @t('Amount')
{{ $row->category }} {{ amount($row->tax, ['to' => $currency->id]) }} {{ amount($row->amount, ['to' => $currency->id]) }}
@endif @if (isset($data4) && $data4)

{{ __('Category Splitdown by Order Date') }}

@foreach ($data4 AS $row) @endforeach
@t('Category') @t('Amount')
{{ $row->category_name }} {{ amount($row->amount, ['to' => $currency->id]) }}
@endif @endsection