@extends('user.layout.report_layout') @section('report_body')
@component('components.project_headline') @endcomponent

ক্যাশ রিপোর্ট

তারিখ : {{$search_date}}

বাংলা তারিখ : {{$bangla_date}}

@php $total_joma = 0; $total_khoroc = 0; $total = 0; @endphp @foreach($joma as $v) @php $total_joma += $v['total_taka']; @endphp @endforeach
ক্রমিক জমা মোট টাকা
{{ $v['sl'] }} @if(!empty($v['cash_description'])) @else {{ $v['reference'] }} @endif {{ $v['total_taka'] ? $v['total_taka'] : 0 }}
মোট {{$total_joma}}
@foreach($khoroc as $v) @php $total_khoroc += $v['total_taka']; @endphp @endforeach
ক্রমিক খরচ মোট টাকা
{{ $v['sl'] }} {{ $v['reference'] }} {{ $v['total_taka'] ? $v['total_taka'] : 0 }}
মোট {{$total_khoroc}}
@php $total = $total_joma - $total_khoroc; @endphp

মোট ক্যাশ : {{ $total }}

@if(\Auth::guard('admin')->user()) @if(date("Y-m-d") > date("Y-m-d", strtotime($search_date)))
@csrf
@endif @endif
@endsection