@extends('adminlte::page') @section('title', 'Invoice') @section('content_header')

Invoice

@stop @section('content')
Note:
This page has been enhanced for printing. Click the print button at the bottom of the invoice to test.


@foreach($orders as $order => $v)

Warehouse APP, Inc. {{$v['order']['invoice_no']}}

From
Warehous APP, Inc.
Denpasar
Phone: -
Email: -
To
{{$v['order']['receiver_full_name']}}
{{$v['order']['receiver_address']}},
{{$v['order']['city_or_region']}}, {{$v['order']['receiver_province']}} {{$v['order']['receiver_zip_code']}}
Phone: {{$v['order']['receiver_phone_number']}}

@foreach($v['item_order'] as $key) @endforeach
Qty Product Item Code # Item Weight # Description Price Subtotal
{{$qty}} {{$key['item_name']}} {{$key['item_code']}} {{$key['item_weight']}} gr {{$key['item_description']}} Rp. {{number_format($key['item_price'],0,",",".")}} Rp. {{number_format($total,0,",",".")}}
Total: Rp. {{$totalAll}}

Print date: 11 Dec 2025

@endforeach
@stop @section('css') @stop @section('js') @stop