@t('Start Time')
@datetime($data->date)
@t('End Time')
@datetime($data->end_date)
@t('Status')
{{ $data->status }}
@t('People')
{{ $data->people }}
@if (isset($data->extra->notes) && $data->extra->notes)
@t('Notes')
{!! nl2br($data->extra->notes) !!}
@endif @if (isset($data->sums) && $data->sums)
@t('Paid Amount')
{{ amount($data->sums->paid_amount) }}
@t('Total Amount')
{{ amount($data->total) }}
@t('Remaining')
{{ amount($data->remaining_payment_total) }}
@endif @if ($data->OrdersItem && $data->OrdersItem)

@t('Items')

@foreach ($data->OrdersItem as $item) @if ($item->actual_price) @else @endif @endforeach
@t('Product') @t('Qty') @t('Price') @t('Full Price')
{{ $item->Product->name}} {{ $item->qty }}{{ amount($item->price) }} {{ amount($item->actual_price) }}{{ amount($item->price) }}
@endif