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

📋 Daftar Invoice Handle

Buat Invoice Handle
@if($invoiceHandles->isEmpty())
Belum ada data Invoice Handle

Klik tombol "Buat Invoice Handle" untuk menambahkan data baru

Buat Invoice Handle
@else
@foreach($invoiceHandles as $key => $handle) @endforeach
No Invoice BOM Product Name Product Code Grand Total Tanggal Dibuat Aksi
{{ $invoiceHandles->firstItem() + $key }} BOM #{{ $handle->invoiceBom->id }} {{ $handle->invoiceBom->product_name }} {{ $handle->invoiceBom->product_code }} {{ \App\Helpers\CasegoodHelper::formatRupiah($handle->grand_total) }} {{ $handle->created_at->format('d M Y H:i') }}
@csrf @method('DELETE')
{{ $invoiceHandles->links() }}
@endif @endsection