{{ $data->id }}
|
@if ($row->user_id)
{{ $row->User->first_name }} {{ $row->User->last_name }}
@else
@if (isset($row->extra->user))
{{ $row->extra->user->first_name}}
{{ $row->extra->user->last_name}}
@else
@t('N/A')
@endif
@endif
|
{{ amount(
$row->amount,
[
'to' => $row->currency_id
]
) }}
|
@if (in_array($row->status, ['active', 'pending']))
{{ amount(
$row->net_amount,
[
'to' => $row->currency_id
]
) }}
@else
{{ $row->status }}
@endif
|
@datetime($row->created) |
{{ $row->type }} |
@if (isset($order_seats->{$row->id}))
{{ implode(', ', $order_seats->{$row->id}) }}
@endif
|
|