@extends('layouts.app') @section('title', 'Quantations List') @section('content')
| # | Date | Reference No | Customer | Grand Total | Status | Balance | Discount | Payment Status | Action | |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $quantation->created_at ?? 'N/A' }} | {{ $quantation->reference_no ?? 'N/A' }} | {{ $quantation->customer_name ?? 'N/A' }} | ${{ number_format($quantation->grandtotal, 2) }} | @if($quantation->status == 'Confirmed') Confirmed @elseif($quantation->status == 'Pending') Pending @elseif($quantation->status == 'Draft') Draft @endif | ${{ number_format($quantation->amount, 2) }} | ${{ number_format($quantation->balance ?? 0, 2) }} | ${{ number_format($quantation->discount ?? 0, 2) }} | Edit | |
| No quantation records found. | ||||||||||