@extends('layouts.app') @section('title', 'Branch Due Details') @section('content')

Branch Due Details

View branch due information

Branch Information

Branch Name

{{ $branchName ?? 'N/A' }}

Branch Code

{{ $branchCode ?? 'N/A' }}

Contact Number

{{ $contactNumber ?? 'N/A' }}

Email

{{ $email ?? 'N/A' }}

Due Details

Total Due Amount

Rs. {{ number_format($totalDue ?? 0, 2) }}

Paid Amount

Rs. {{ number_format($paidAmount ?? 0, 2) }}

Pending Amount

Rs. {{ number_format($pendingAmount ?? 0, 2) }}

Due Date

{{ $dueDate ?? 'N/A' }}

Transaction History

Date Description Amount Status
{{ $transactionDate ?? 'N/A' }} {{ $transactionDescription ?? 'N/A' }} Rs. {{ number_format($transactionAmount ?? 0, 2) }} {{ $transactionStatus ?? 'Completed' }}
Back to List
@endsection