added remarks for payments, expanded currency list
This commit is contained in:
@@ -52,6 +52,7 @@
|
||||
<!-- COLUMN 1 -->
|
||||
<div class="col-lg-4 d-flex flex-column">
|
||||
|
||||
<!-- Company Profile -->
|
||||
<!-- Company Profile -->
|
||||
<div class="card border-light-subtle shadow-sm mb-4">
|
||||
<div class="card-header bg-white py-3 border-bottom border-light">
|
||||
@@ -77,6 +78,14 @@
|
||||
<span class="text-muted small">Date Added</span>
|
||||
<span class="fw-medium text-dark">{{ $showclient->created_at ? \Carbon\Carbon::parse($showclient->created_at)->format('d M Y') : 'N/A' }}</span>
|
||||
</li>
|
||||
<!-- Standardized Account Manager Row -->
|
||||
<li class="list-group-item px-0 py-2 d-flex justify-content-between align-items-center border-0">
|
||||
<span class="text-muted small">Account Manager</span>
|
||||
<span class="fw-bold text-primary">
|
||||
<i class="bi bi-person-badge me-1"></i>
|
||||
{{ $showclient->account_manager->name ?? $showclient->accountManager->name ?? 'Unassigned' }}
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@@ -505,6 +514,7 @@
|
||||
<th>Invoice #</th>
|
||||
<th>Services</th>
|
||||
<th>Amount</th>
|
||||
<th>Remarks</th>
|
||||
<th>Date</th>
|
||||
<th>Status</th>
|
||||
<th class="text-end">Actions</th>
|
||||
@@ -530,6 +540,7 @@
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ $payment->invoice_amount }}</td>
|
||||
<td>{{ $payment->remarks ?? 'N/A' }}</td>
|
||||
<td class="text-muted small">{{ $payment->invoice_date ? \Carbon\Carbon::parse($payment->invoice_date)->format('d M Y') : 'N/A' }}</td>
|
||||
<td>
|
||||
<span class="badge bg-info bg-opacity-10 text-info text-uppercase">{{ $payment->invoice_status ?? 'Pending' }}</span>
|
||||
|
||||
Reference in New Issue
Block a user