Form 1099-MISC
Miscellaneous Income
Tax Year: {{ $form->tax_year }}
Payer Information
Company Name: {{ config('app.name') }}
Recipient Information
Name: {{ $customer->customer_name }}
Payment Information
Total Payments: ${{ number_format($form->total_payments, 2) }}
Federal Tax Withheld: ${{ number_format($form->total_tax_withheld, 2) }}
Tax Summary
@foreach($form->tax_summary as $taxName => $tax)
{{ $taxName }} ({{ $tax['rate'] }}%): ${{ number_format($tax['amount'], 2) }}
@endforeach
Total Tax Withheld: ${{ number_format($form->total_tax_withheld, 2) }}