{{ HTML::style('css/bootstrap.css') }}
{{ get_config('company_detail') }}
| {{ trans('invoices.sold_to') }} / Sold to: | ||
| {{ trans('customers.menu') }} | @if ($invoice->customer_id){{ $invoice->first_name }} {{ $invoice->last_name }} | @else: General Customer | @endif
|---|---|---|
| Tel | : {{ $invoice->tel }} | |
| Address | : {{ $invoice->address }} | |
| {{ trans('invoices.in_no') }} / No | : {{ convertInvoiceNumber($invoice->id) }} |
| {{ trans('invoices.date') }} / Date | : {{ $invoice->created_at }} |
| {{ trans('invoices.saler') }} / Saler | : {{ $invoice->funame }} {{ $invoice->luname }} |
| {{ get_config("invoice_client_note") }} |
| No | Item Code | Description | Qty | Price | Amount |
|---|---|---|---|---|---|
| {{ $i; }} | {{ $order->sku }} | {{ $order->name }} | {{ $order->amount }} | {{ money($order->price) }} | {{ money($order->amount * $order->price) }} |
| {{ trans('invoices.total_riel') }} / RIEL: | {{ money($invoice->total * get_config('invoice_rate'), gscc()) }} |
|---|---|
| {{ trans('invoices.total_usd') }} / USD: | {{ money($invoice->total) }} |
| {{ trans('invoices.pay_1') }} / PAY: | {{ money($invoice->recieved) }} |
| {{ trans('invoices.bal') }} / BAL: | {{ money($invoice->deposit) }} |