@extends('layouts.adminapp') @section('content')
@include('PrintHeader.header')

{{$Banking->name}} - {{__('lng.BankingTransactionReport')}}

@php $si=$total=0; @endphp @foreach($Banking->BankingWithdraw()->where('isCancelled',false)->orWhereNull('isCancelled')->get() as $BankingWithdraw) @php $Date = date("d-m-Y",strtotime($BankingWithdraw->date)); @endphp @php $total+=$BankingWithdraw->amount; @endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Date') }} {{ __('lng.Invoice') }} {{ __('lng.Name') }} {{ __('lng.Phone') }} {{ __('lng.Head') }} {{ __('lng.Amount') }}
{{++$si}} {{$Date}} {{ $BankingWithdraw->invoicenumber }} {{ $BankingWithdraw->BankingRegister->Member->name ?? '' }} {{ $BankingWithdraw->BankingRegister->Member->contact ?? '' }} {{ $BankingWithdraw->Head->title }} @currency($BankingWithdraw->amount )
{{ __('lng.Total') }} @currency($total)
@endsection