@extends('layouts.app') @section('title', 'Riwayat Quotations') @section('sidebar')
@endsection @section('content')Daftar semua quotation yang pernah dibuat
| No. Quotation | Buyer | Product | Total Harga | Status | Tanggal | Aksi |
|---|---|---|---|---|---|---|
| {{ $quotation->quotation_number }} | {{ $quotation->buyer->name }} | {{ $quotation->product->name }} | Rp {{ number_format($quotation->total_price, 0, ',', '.') }} | @if($quotation->status == 'draft') Draft @elseif($quotation->status == 'submitted') Submitted @elseif($quotation->status == 'approved') Approved @else Rejected @endif | {{ $quotation->created_at->format('d M Y') }} | Lihat |
| Belum ada quotation. Buat quotation pertama | ||||||