@extends('layouts.app') @section('title', 'Riwayat Quotations') @section('sidebar') @endsection @section('content')

Riwayat Quotations

Daftar semua quotation yang pernah dibuat

+ Buat Quotation Baru
@if(session('success'))
{{ session('success') }}
@endif
@forelse($quotations as $quotation) @empty @endforelse
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
@csrf @method('DELETE')
Belum ada quotation. Buat quotation pertama
{{ $quotations->links() }}
@endsection