@extends('layouts.portal') @section('title', trans_choice('general.transactions', 2)) @section('content')
{!! Form::open([ 'route' => 'portal.transactions.index', 'role' => 'form', 'method' => 'GET', 'class' => 'mb-0' ]) !!}
{!! Form::close() !!}
@foreach($transactions as $item) @endforeach
@sortablelink('paid_at', trans('general.date')) @sortablelink('account.name', trans('accounts.account_name')) @sortablelink('type', trans_choice('general.types', 1)) @sortablelink('description', trans('general.description')) @sortablelink('amount', trans('general.amount'))
@date($item->date) {{ $item->account->name }} {{ trans_choice('general.payments', 1) }} {{ $item->description }} @money($item->amount, $item->currency_code, true)
@endsection @push('scripts_start') @endpush