@extends('layouts.adminapp') @section('content') @section('head',__('lng.JournalVoucherReport')) {{-- Subscription Payment Report --}}
{{ __('lng.JournalVoucherReport') }}

@php $si=$Total=0;$TOTAL=0; @endphp @foreach ($JournalPaginations as $JournalPagination) @php $DTs = date("F-d-Y",strtotime($JournalPagination->date));@endphp @php $TOTAL += $JournalPagination->amount; @endphp @endforeach
{{__('lng.SiNo')}} {{ __('lng.Date') }} {{__('lng.Credit')}} {{__('lng.Debit')}} {{ __('lng.Narration') }} {{ __('lng.Amount') }}
{{ ++$si }} {{ $DTs }} {{ $JournalPagination->creditledger->title }} {{ $JournalPagination->debitledger->title }} {{ $JournalPagination->narration }} @currency($JournalPagination->amount ?? '0')
{{ __('lng.Total') }} @currency($TOTAL)
@foreach ($Journals as $Amount) @php $Total += $Amount->amount; @endphp @endforeach
{{__('lng.TotalAmount')}} @currency($Total)

@csrf
@endsection