@extends('layouts.adminapp')
@section('title') {{ __('lng.ReceiptVoucher') }} @endsection
@section('active_report', 'active')
@section('open_report', 'open')
@section('open_voucher', 'open')
@section('active_voucher', 'active')
@section('receipt_voucher', 'active')
@section('content')
{{ __('lng.Invoice') }} |
{{ __('lng.Date') }} |
{{ __('lng.Name') }} |
{{ __('lng.Ledger') }} |
{{ __('lng.Head') }} |
{{ __('lng.Amount') }} |
@php $si=$TotalAmount=0; @endphp
@foreach ($DonationPaginations as $DonationPagination)
@php $DTs = date("F-d-Y",strtotime($DonationPagination->date));@endphp
{{ $DonationPagination->invoicenumber }} |
{{ $DTs }} |
{{ $DonationPagination->member->name ?? $DonationPagination->name }} |
{{ $DonationPagination->Ledger->title ?? '' }} |
{{ $DonationPagination->payhead->title }} |
@currency($DonationPagination->amount ?? '0') |
@endforeach
@foreach ($Donations as $Amount)
@php
$TotalAmount += $Amount->amount;
@endphp
@endforeach
{{ __('lng.TotalAmount') }} |
@currency($TotalAmount) |
@endsection