@extends('layouts.admin') @section('content')
| {{ trans('cruds.invoice.fields.id') }} | {{ $invoice->id }} |
|---|---|
| {{ trans('cruds.invoice.fields.user') }} | {{ $invoice->user->name ?? '' }} |
| {{ trans('cruds.invoice.fields.billing_for') }} | {{ $invoice->billing_for }} |
| {{ trans('cruds.invoice.fields.amount') }} | {{ $invoice->amount }} |
| {{ trans('cruds.invoice.fields.due') }} | {{ $invoice->due }} |
| {{ trans('cruds.invoice.fields.status') }} | {{ $invoice->status }} |
| Unit | {{ $invoice->unit->name ?? '' }} |
| # | Payment Amount | Payment Type | Payment Date | Notes | Actions |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $payment->amount }} | {{ ucfirst($payment->payment_type) }} | {{ $payment->payment_date}} | {{ $payment->notes ?? 'No Notes' }} | Generate Receipt |
| No payments recorded for this invoice. | |||||