@extends('layouts.user') @section('title', __('account_transfers.account_transfers')) @section('content')
| {{ __('account_transfers.date') }} | {{ __('account_transfers.trx') }} | {{ __('account_transfers.from') }} | {{ __('account_transfers.to') }} | {{ __('account_transfers.amount') }} | {{ __('account_transfers.bank_charge') }} | {{ __('account_transfers.note') }} | {{ __('account_transfers.action') }} |
|---|---|---|---|---|---|---|---|
| {{ optional($t->posted_at)->format('d M Y') ?? $t->created_at->format('d M Y') }} | {{ $t->trx_no }} | {{ $t->fromAccount?->name }} | {{ $t->toAccount?->name }} | {{ number_format($t->amount, 2) }} | {{ number_format((float) ($t->bank_charge ?? 0), 2) }} | {{ $t->note }} | |
| {{ __('account_transfers.no_transfers_found') }} | |||||||