@extends('admin.layouts.panel') @section('head')
Invoice #{{ $order->invoice }}
{{ $order->created_at->locale('id')->translatedFormat('d F Y H:i') }} WIB
| No | Nama Produk | Berat (KG) | Harga Satuan | Total |
|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $item->title }}
@if ($item->product && $item->product->description)
{{ Str::limit($item->product->description, 50) }} @endif |
{{ number_format($item->qty, 0, ',', '.') }} | Rp {{ number_format($item->final_price, 0, ',', '.') }} | Rp {{ number_format($item->item_total, 0, ',', '.') }} |