{{ trans('texts.vendor') }} {{ trans('texts.client') }} @if ($multiUser) {{ trans('texts.user') }} @endif {{ trans('texts.expense_date') }} {{ trans('texts.amount') }} {{ trans('texts.tax') }} {{ trans('texts.currency') }} {{ trans('texts.category') }} {{ trans('texts.status') }} {{ trans('texts.public_notes') }} {{ trans('texts.private_notes') }} {{ trans('texts.payment_type') }} {{ trans('texts.payment_date') }} {{ trans('texts.transaction_reference') }} @foreach ($expenses as $expense) {{ $expense->vendor ? $expense->vendor->getDisplayName() : '' }} {{ $expense->client ? $expense->client->getDisplayName() : '' }} @if ($multiUser) {{ $expense->user->getDisplayName() }} @endif {{ $expense->expense_date }} {{ $expense->present()->amount }} {{ $expense->present()->taxAmount }} {{ $expense->present()->currencyCode }} {{ $expense->present()->category }} {{ $expense->statusLabel() }} {{ $expense->public_notes }} {{ $expense->private_notes }} {{ $expense->present()->payment_type }} {{ $expense->payment_date }} {{ $expense->transaction_reference }} @endforeach