@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') }}
@t('Payment Type') |
@t('Amount') |
@foreach ($data1 AS $row)
{{
(
isset($payment_labels->{$row->type}) &&
$payment_labels->{$row->type} ? $payment_labels->{$row->type} : $row->type
)
}} |
{{ amount($row->amount, ['to' => $currency->id]) }} |
@endforeach
@endif
@if (isset($data3) && $data3)
{{ __('Payments Splitdown by Created Date') }}
@t('Payment Type') |
@t('Amount') |
@foreach ($data3 AS $row)
{{
(
isset($payment_labels->{$row->type}) &&
$payment_labels->{$row->type} ? $payment_labels->{$row->type} : $row->type
)
}} |
{{ amount($row->amount, ['to' => $currency->id]) }} |
@endforeach
@endif
@if (isset($data2) && $data2)
{{ __('Nominal Categories Splitdown') }}
@t('Nominal') |
@t('Tax') |
@t('Amount') |
@foreach ($data2 AS $row)
{{ $row->category }} |
{{ amount($row->tax, ['to' => $currency->id]) }} |
{{ amount($row->amount, ['to' => $currency->id]) }} |
@endforeach
@endif
@if (isset($data4) && $data4)
{{ __('Category Splitdown by Order Date') }}
@t('Category') |
@t('Amount') |
@foreach ($data4 AS $row)
{{ $row->category_name }} |
{{ amount($row->amount, ['to' => $currency->id]) }} |
@endforeach
@endif
@endsection