@extends('layouts.app') @section('page-title', 'Quotations') @section('content')
| # | Date | Client | Company | Total | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $quotation->quotation_number }} | {{ $quotation->date ? \Illuminate\Support\Carbon::parse($quotation->date)->format('Y-m-d') : '' }} | {{ $quotation->bill_to }} | {{ $quotation->company_name }} | {{ number_format($quotation->total,2) }} | {{ ucfirst($quotation->status) }} | Print Edit @if($quotation->status !== 'sale') @endif @if($quotation->status !== 'not_sale') @endif |
| No quotations found. | ||||||