@extends('layouts.app') @section('title') Account Detail @stop @section('breadcrumb') @stop @section('content')

Account Information


Name {{$bank->name}}
Bank Address {{$bank->address}}
Account Title {{$bank->account_title}}
Account Number {{$bank->account_number}}
Bank Phone Number {{$bank->phone_number }}
Description {{$bank->description}}
Updated at {{$bank->updated_at}}
Created at {{$bank->created_at}}

Account Ledger


@foreach($records as $r) @endforeach
Date Category Memo Amount Balance
Opening Balance {{number_format($balance)}}
{{date('d-m-Y',strtotime($r['date']))}} {{$r['category']}} {{$r['memo']}} {{number_format($r['amount'])}} {{number_format($balance)}}
Total {{number_format($debit)}} {{number_format($balance)}}
Closing Balance {{number_format($balance)}}
@stop