@extends('layout.base') @section('layout.base.header')
{{ now()->format('M d, Y H:i') }}
\n{{ __( 'Customer: :name', [ 'name' => $bill['customer']['name'] ] ) }}
@endif{{ ns()->currency->define( $bill['totals']['total'] ) }}
@if( isset($bill['remaining_amount']) && $bill['remaining_amount'] > 0 ){{ __( 'Remaining: :amount', [ 'amount' => ns()->currency->define( $bill['remaining_amount'] ) ] ) }}
@endif| {{ __( 'Item' ) }} | {{ __( 'Qty' ) }} | {{ __( 'Unit Price' ) }} | {{ __( 'Total' ) }} |
|---|---|---|---|
| {{ $product['name'] }} | {{ $product['quantity'] }} | {{ ns()->currency->define( $product['unit_price'] ) }} | {{ ns()->currency->define( $product['total_price'] ) }} |
@if( isset($message) ) {{ $message }} @else {{ __( 'There are no active bills for this table.' ) }} @endif