@foreach ($order->items as $item)
@if ($item->product && $item->product->image)

@else
@endif
{{ $item->title }}
@if ($item->product)
{{ $item->product->description }}
{{ $item->product->status == 1 ? 'Active' : 'Non Active' }}
Dibuat: {{ $item->product->created_at->format('d M Y') }}
@endif
Harga Satuan:
Rp
{{ number_format($item->final_price, 0, ',', '.') }}
Berat:
{{ $item->qty }} KG
Subtotal Produk:
Rp
{{ number_format($item->item_total, 0, ',', '.') }}
@if (!$loop->last)
@endif
@endforeach