@extends('layouts.admin') @section('title', trans_choice('general.transfers', 2)) @permission('create-banking-transfers') @section('new_button')
@endsection @endpermission @section('content')@sortablelink('payment.paid_at', trans('general.date')) | @sortablelink('payment.name', trans('transfers.from_account')) | @sortablelink('revenue.name', trans('transfers.to_account')) | @sortablelink('payment.amount', trans('general.amount')) |
---|---|---|---|
{{ Date::parse($item->paid_at)->format($date_format) }} | {{ $item->from_account }} | {{ $item->to_account }} | @money($item->amount, $item->currency_code, true) |