{{ $row->id }} |
@if (isset($company) && $company)
{{ $row->Venue->name }} |
@endif
@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
|
@date($row->date)
@if ($row->end_date)
@if (isset($row->days) && $row->days > 0)
- @date($row->end_date)
@else
ยท
@time($row->start_time) -
@time($row->end_time)
@endif
@endif
|
@datetime($row->created) |
{{ $row->status }} |
{{ $row->type }}
@if ($row->type == 'manual')
( {{ $row->payment }} )
@endif
|
|
@endforeach