@extends('layouts.admin') @section('title', trans_choice('general.transactions', 2)) @section('new_button')  {{ trans('import.import') }}  {{ trans('general.export') }} @endsection @section('content')
{!! Form::open([ 'url' => 'banking/transactions', 'role' => 'form', 'method' => 'GET', 'class' => 'mb-0' ]) !!}
{!! Form::close() !!}
@foreach($transactions as $item) @endforeach
@sortablelink('account.name', trans_choice('general.accounts', 1)) @sortablelink('type', trans_choice('general.types', 1)) @sortablelink('description', trans('general.description')) @sortablelink('amount', trans('general.amount'))
{{ $item->account->name }} {{ trans_choice('general.' . Str::plural($item->type), 1) }} {{ $item->description }} @money($item->amount, $item->currency_code, true)
@endsection @push('scripts_start') @endpush