@extends('layouts.app') @section('title', 'Detail Quotation') @section('sidebar') @endsection @section('content')

Detail Quotation

{{ $quotation->quotation_number }}

← Kembali
@if(session('success'))
{{ session('success') }}
@endif
Logo

KAYU MEBEL INDONESIA

Bill of Material (Mass Product)

Quotation Number:

{{ $quotation->quotation_number }}

Date: {{ $quotation->created_at->format('d F Y') }}

Product Name:

{{ $quotation->product->name }}

Product Type:

{{ $quotation->product->code }}

Buyer:

{{ $quotation->buyer->name }}

Order:

1 Pcs

KOMPONEN

@foreach($quotation->details as $index => $detail) @endforeach
No. Component Name Material Dimensions Qty Price Total
{{ $index + 1 }} {{ $detail->component_name }} {{ $detail->material_type ?? '-' }} @if($detail->width && $detail->length) {{ $detail->width }} × {{ $detail->length }} mm @else - @endif @if($detail->m2) {{ number_format($detail->m2, 6) }} @else - @endif {{ $detail->qty }} Rp {{ number_format($detail->price_per_unit, 0, ',', '.') }} Rp {{ number_format($detail->subtotal, 0, ',', '.') }}
TOTAL Rp {{ number_format($quotation->total_price, 0, ',', '.') }}

TOTAL PERHITUNGAN CONTOH:

@foreach($quotation->details as $index => $detail) @endforeach
No Komponen Perhitungan Harga
{{ $index + 1 }} {{ $detail->component_name }} @if($detail->material_type)({{ $detail->material_type }})@endif {{ $detail->note ?? '-' }} Rp {{ number_format($detail->subtotal, 0, ',', '.') }}
TOTAL Rp {{ number_format($quotation->total_price, 0, ',', '.') }}

Dibuat Oleh:

{{ $quotation->user->name }}

Admin

Diperiksa Oleh:

_________________

Manager

Disetujui Oleh:

_________________

Director

KAYU MEBEL INDONESIA © {{ date('Y') }} | {{ $quotation->quotation_number }}

@endsection @push('styles') @endpush