@extends('admin.layouts.app') @section('title',get_setting('site_name').' Bank Statement') @section('content')
| {{__('Date & Time')}} | {{__('Description')}} | {{__('DR')}} | {{__('CR')}} | {{__('Balance')}} |
|---|---|---|---|---|
| {{$balance}} | ||||
| {{date('F d, Y , h:i:s A',strtotime($bank->created_at))}} | {{$bank->description}} | @if($bank->dr!=0) {{$bank->dr}} @endif | @if($bank->cr!=0) {{$bank->cr}} @endif | {{$bank->balance}} |