@component('components.project_headline')
@endcomponent
ক্যাশ রিপোর্ট
তারিখ : {{$search_date}}
বাংলা তারিখ : {{$bangla_date}}
|
ক্রমিক
|
জমা
|
মোট টাকা
|
@php
$total_joma = 0;
$total_khoroc = 0;
$total = 0;
@endphp
@foreach($joma as $v)
| {{ $v['sl'] }} |
@if(!empty($v['cash_description']))
@else
{{ $v['reference'] }}
@endif
|
{{ $v['total_taka'] ? $v['total_taka'] : 0 }} |
@php
$total_joma += $v['total_taka'];
@endphp
@endforeach
| মোট |
{{$total_joma}} |
|
ক্রমিক
|
খরচ
|
মোট টাকা
|
@foreach($khoroc as $v)
| {{ $v['sl'] }} |
{{ $v['reference'] }} |
{{ $v['total_taka'] ? $v['total_taka'] : 0 }} |
@php
$total_khoroc += $v['total_taka'];
@endphp
@endforeach
| মোট |
{{$total_khoroc}} |
@php
$total = $total_joma - $total_khoroc;
@endphp
@if(\Auth::guard('admin')->user())
@if(date("Y-m-d") > date("Y-m-d", strtotime($search_date)))
@endif
@endif
@endsection