@extends('layouts.adminapp') @section('title') {{ __('lng.WithdrawnReport') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_banking_report', 'open') @section('active_banking_report', 'active') @section('content')

{{ __('lng.Print') }}

@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)
{{ __('lng.Back') }}
@endsection