@extends('layouts.app') @section('content')

Sales

@include('validate')

Sales List

@csrf
{{-- --}} @forelse ($invoiceList as $invoice) {{-- --}} @empty @endforelse
Invoice No. DateCustomerTotal Amount Status Action
{{ $invoice->reference_no }} {{ $invoice->invoice_date->format(app_date_format()) }}{{ $invoice->customer->customer_name ?? '' }}{{ number_format($invoice->grand_total, 2) }} @if ($invoice->status == 'draft') Draft @elseif ($invoice->status == 'paid') Paid @endif
@lang('general.no_details_found')
@endsection @push('scripts') @endpush