@extends('accounts.layouts.bill') @section('title', trans_choice('general.bills', 1) . ': ' . $bill->bill_number) @section('content')
{{ trans('bills.bill_number') }}: | {{ $bill->bill_number }} |
---|---|
{{ trans('bills.order_number') }}: | {{ $bill->order_number }} |
{{ trans('bills.bill_date') }}: | {{ Date::parse($bill->billed_at)->format($date_format) }} |
{{ trans('bills.payment_due') }}: | {{ Date::parse($bill->due_at)->format($date_format) }} |
{{ trans_choice('general.items', 1) }} | {{ trans('bills.quantity') }} | {{ trans('bills.price') }} | {{ trans('bills.total') }} |
---|---|---|---|
{{ $item->name }}
@if ($item->sku)
{{ trans('items.sku') }}: {{ $item->sku }} @endif |
{{ $item->quantity }} | @money($item->price, $bill->currency_code, true) | @money($item->total, $bill->currency_code, true) |
{{ trans_choice('general.notes', 2) }}:
{{ $bill->notes }}
@endif{{ trans($total['name']) }}: | @money($total->amount, $bill->currency_code, true) |
---|---|
{{ trans('invoices.paid') }}: | - @money($bill->paid, $bill->currency_code, true) |
{{ trans($total['name']) }}: | @money($total->amount - $bill->paid, $bill->currency_code, true) |