@extends('layouts.app') @section('content')
Invoice No | Customer | Issue Date | Gross Amount | Sales Person | Status | Created By | Actions |
---|---|---|---|---|---|---|---|
INV{{ sprintf("%05d",$invoice->invoice_no) ?: "(blank)" }} | {{$invoice?->customer?->name ?: "(blank)"}} | {{ $invoice->issue_date ?: "(blank)" }} | {{ $invoice->gross_amount ?: "(blank)" }} | {{ $invoice->sales_person ?: "(blank)" }} | {{ $invoice->status ?: "(blank)" }} | {{ $invoice->user->name ?: "(blank)" }} |
@if($invoice->trashed())
@else
@lang('Show')
|