Quotation List Reset Period Summary
@forelse($quotations as $q) @php $total = (float) ($q->total ?? 0); $discount = (float) ($q->discount ?? 0); $net = max($total - $discount, 0); @endphp @empty @endforelse
Actions Date Bill No Customer Total Discount Net Remark (preview)
Actions
{{ optional($q->quotation_date)->format('Y-m-d') ?? '' }} {{ $q->bill_no }} {{ $q->customer?->name ?? $q->customer_name ?? '-' }} @if(!empty($q->customer_mobile))
{{ $q->customer_mobile }}
@endif
{{ number_format($total, 2) }} {{ number_format($discount, 2) }} {{ number_format($net, 2) }} {{ \Illuminate\Support\Str::limit((string)($q->remark ?? ''), 60) }}
No quotations found.
Page {{ $quotations->currentPage() }} of {{ $quotations->lastPage() }}
@if($quotations->onFirstPage()) Prev @else Prev @endif | @if($quotations->hasMorePages()) Next @else Next @endif