{!! Image::background( ( isset($data->Photo->url) ? $data->Photo->url : '/img/default.png' ), [ 'class' => 'list-element__image', ] ) !!}
@if ($data->date)
@long_date($data->date)
@endif @if (isset($data->Event))

{{ limit($data->Event->name, 40) }}

{{ limit($data->Venue->name, 40) }}
@elseif ($data->Venue)

@t('Order for %s', $data->Venue->name)

@else

@t('Photo purchase')

@endif @foreach ($data->OrdersItem as $item) @endforeach
{{ $item->Product->name }} ×{{ $item->qty }} {{ amount($item->actual_price ? $item->actual_price : $item->price, ['Currency' => oa($data->Currency)]) }}
@t('Booking Number')
{{ $data->id }}
@t('Payment Date')
@date($data->created)
@t('Amount Paid')
{{ amount($data->paid_amount) }}
@include('Plugins/Payment/Views/Elements/Order/action')