@stack('account_transactions_content_start')
{{ trans_choice('general.date', 1) }} |
{{ trans('general.amount') }} |
{{ trans('general.type') }} |
{{ trans('general.category') }} |
@foreach($transactions as $item)
@date($item->issued_at) |
@money($item->amount, $item->currency_code, true) |
{{ $item->type }} |
$item->category |
@endforeach
@stack('account_transactions_content_end')
@stack('customer_transactions_content_start')
{{ trans('general.date') }} |
{{ trans('general.amount') }} |
{{ trans_choice('general.categories', 1) }} |
{{ trans_choice('general.accounts', 1) }} |
@foreach($transactions as $item)
@date($item->paid_at) |
@money($item->amount, $item->currency_code, true) |
{{ $item->category->name }} |
{{ $item->account->name }} |
@endforeach
@stack('customer_transactions_content_end')