Loan Details
${{ number_format($loan->loan_amount, 2) }}
{{ $loan->loan_timing }}
{{ is_array($loan->loan_use) ? implode(', ', $loan->loan_use) : $loan->loan_use }}
Borrower Information
{{ $loan->first_name }} {{ $loan->last_name }}
{{ $loan->contact_number }}
{{ $loan->email }}
Business Information
{{ $loan->business_name }}
{{ $loan->dba }}
{{ $loan->physical_address }}, {{ $loan->city }}, {{ $loan->state }} {{ $loan->zip }}
{{ $loan->business_phone }}
{{ $loan->business_email }}
{{ $loan->entity_type }}
{{ $loan->established_date->format('d-m-Y') }}
{{ $loan->business_category }}
{{ $loan->product_service }}
${{ number_format($loan->annual_sales, 2) }}
${{ number_format($loan->monthly_sales ?? 0, 2) }}
{{ $loan->other_financing ?? 'N/A' }}
${{ number_format($loan->outstanding_balance ?? 0, 2) }}
{{ ucfirst($loan->ownership) }}
@if($loan->ownership == 'sole')
Owner 1 Information
{{ $loan->owner1_first_name }} {{ $loan->owner1_last_name }}
{{ $loan->owner1_ownership }}%
@if($loan->owner2_first_name || $loan->owner2_last_name)
Owner 2 Information
{{ $loan->owner2_first_name }} {{ $loan->owner2_last_name }}
{{ $loan->owner2_ownership }}%
@endif
@endif