@include('layouts.header')
@include('layouts.sidebar')

Invoice

@if (session('success')) @endif @if (session('delete')) @endif

Invoice List

@php $no = '1'; @endphp @foreach ($invoices as $invoice) @if ($invoice->total == $invoice->deposit) @elseif($invoice->total > $invoice->deposit && $invoice->deposit > 0) @else @endif @php $no++; @endphp @endforeach
No. Invoice No. Customer Name Register Mode Total Payment Status Date Action
{{ $no }} {{ $invoice->invoice_no }} {{ $invoice->customer_name }} {{ $invoice->balance_due }} {{ $invoice->total }}PaidPartial PaidUnpaid{{ $invoice->invoice_date }} @if ($invoice->status == 'invoice') @else @endif
{{-- --}}