@extends('layouts.adminapp') @section('content')
{{ __('lng.Invoice') }} | {{ __('lng.Date') }} | {{ __('lng.Name') }} | {{ __('lng.Ledger') }} | {{ __('lng.Head') }} | {{ __('lng.Amount') }} |
---|---|---|---|---|---|
{{ $Donation->invoicenumber }} | {{ $DTs }} | @if ($Donation->isGuest) {{$Donation->name ?? ''}} @else {{$Donation->member->name ?? ''}} @endif | {{$Donation->Ledger->title ?? ''}} | {{$Donation->payhead->title}} | @currency($Donation->amount ?? '0') |
{{ __('lng.Total') }} | @currency($Total) |