@extends('layouts.app') @section('title', $invoice->number . ' - ' . trans('invoice.detail')) @section('content')
| {{ trans('app.table_no') }} | {{ trans('invoice.item_description') }} | {{ trans('invoice.item_amount') }} |
|---|---|---|
| {{ $key + 1 }} | {!! nl2br($item['description']) !!} | {{ format_money($item['amount']) }} |
| {{ __('invoice.subtotal') }} : | {{ format_money($subtotal) }} | |
| {{ __('invoice.discount') }} {{ $invoice->discount_notes ? '('.$invoice->discount_notes.')': '' }} : | - {{ format_money($invoice->discount) }} | |
| {{ trans('app.total') }} : | {{ format_money($invoice->amount) }} | |