@extends('layouts.app') @section('title', 'Invoice Box - Cost Furniture') @section('page-title', 'Invoice Box') @section('content')

📦 Daftar Invoice Box

Buat Invoice Box
@if($invoiceBoxes->isEmpty())
Belum ada data Invoice Box

Klik tombol "Buat Invoice Box" untuk menambahkan data baru

Buat Invoice Box
@else
@foreach($invoiceBoxes as $key => $box) @endforeach
No Invoice BOM Product Name Product Code Dimensi (P×L×T) Grand Total Tanggal Aksi
{{ $invoiceBoxes->firstItem() + $key }} BOM #{{ $box->invoiceBom->id }} {{ $box->invoiceBom->product_name }} {{ $box->invoiceBom->product_code }} {{ $box->p }}×{{ $box->l }}×{{ $box->t }} mm {{ \App\Helpers\CasegoodHelper::formatRupiah($box->grand_total) }} {{ $box->created_at->format('d M Y') }}
@csrf @method('DELETE')
{{ $invoiceBoxes->links() }}
@endif @endsection