{{ $row->id }} |
@if (isset($row->extra->user))
{{ $row->extra->user->first_name }}
{{ $row->extra->user->last_name }}
@if (isset($row->extra->user->phone) && $row->extra->user->phone)
@t('Phone: ') {{ $row->extra->user->phone }}
@endif
@else
@if (isset($row->User->id) && $row->User->id)
{{ $row->User->first_name }} {{ $row->User->last_name }}
@else
@t('N/A')
@endif
@endif
|
{{
amount(
$row->total,
[
'from' => $row->currency_id,
'to' => $row->currency_id
]
)
}}
|
@date($row->date) |
@date($row->expiration) |
@datetime($row->created) |
@if (Timing::compare($row->expiration) == 1)
@t('Pending')
@else
@t('Expired')
@endif
|
|