@extends('layouts.app') @section('content') {{--
--}}| Address: | {{ $customer->address ?: "(blank)" }} |
|---|---|
| Email: | {{ $customer->email ?: "(blank)" }} |
| Phone No: | {{ $customer->phone_no ?: "(blank)" }} |
| Alt Phone No: | {{ $customer->alt_phone_no ?: "(blank)" }} |
| Tin: | {{ $customer->tin ?: "(blank)" }} |
| Password: | {{ $customer->password ?: "(blank)" }} |
| Balance: | {{ number_format($customer->balance) ?: "(blank)" }} |
| Invoice No | Issue Date | Gross Amount | Sales Person | Status | Created By | Actions |
|---|---|---|---|---|---|---|
| INV{{ sprintf("%05d",$invoice->invoice_no) ?: "(blank)" }} | {{ $invoice->issue_date ?: "(blank)" }} | {{ number_format($invoice->gross_amount) ?: "(blank)" }} | {{ $invoice->sales_person ?: "(blank)" }} | {{ $invoice->status ?: "(blank)" }} | {{ $invoice->user->name ?: "(blank)" }} |
@if($invoice->trashed())
@else
@lang('Show')
@if($invoice->status == "Draft")
|
| Invoice No | Amount | Balance | Received By |
|---|---|---|---|
| INV{{ sprintf("%05d",$payment->invoice->invoice_no) }} | {{ $payment->amount }} | {{ $payment->balance }} | {{ $payment->user->name }} |