{{ env('APP_NAME') }}

Income Summary Report

{{--

Branch Name: {{ $branch_name }}

--}} Order Start Date: {{ $created_at_start }} Order End Date: {{ $created_at_end }}
@php $total = 0; @endphp @forelse ($income_summaries as $income_summary) @php $total += $income_summary->payment_amount; @endphp @empty @endforelse
Sl No Branch Name Payment Type Payment Amount Courier Status
{{ $loop->index+1 }} @if ($income_summary->payment_type == "Sender Payment") {{ App\Models\Branch::find($income_summary->sender_branch_id)->branch_name }} @else {{ App\Models\Branch::find($income_summary->receiver_branch_id)->branch_name }} @endif {{ $income_summary->payment_type }} {{ $income_summary->payment_amount }} {{ $income_summary->courier_status }}
Courier Not Found
Total {{ $total }}