@extends('admin.layouts.app') @section('title',get_setting('site_name').' Bank Statement') @section('content')

{{__('Bank Statement')}}

{{ __('All Transaction') }}
@foreach($bank_statment as $key => $bank) @if ($bank != null) @endif @endforeach
{{__('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}}
{{ $bank_statment->links() }}
@endsection