@extends('layout.app') @section('title', __('money_transfers')) @section('content')
{{ __('money_transfers') }}
@foreach ($moneyTransfer as $money_transfer) @endforeach
{{ __('sl') }} {{ __('date') }} {{ __('reference_no') }} {{ __('from_account') }} {{ __('to_account') }} {{ __('amount') }} {{ __('action') }}
{{ $loop->iteration }} {{ dateformat($money_transfer->created_at) }} {{ $money_transfer->reference_no }} {{ $money_transfer->fromAccount->name ?? 'Deteled' }} {{ $money_transfer->toAccount->name ?? 'Deteled' }} {{ numberFormat($money_transfer->amount) }}
@endsection @push('scripts') @if ($errors->all()) @endif @endpush