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

Invoices

@include('validate')

Invoices List

@csrf
@forelse ($invoiceList as $invoice) @empty @endforelse
Branch Type Invoice No. Date Customer Total Amount Action
{{ $invoice->branch->branch_name ?? '' }} @if($invoice->is_estimate == 'yes') Estimate @elseif($invoice->is_estimate == 'no') Invoice @endif {{ $invoice->reference_no }} {{ $invoice->invoice_date->format(app_date_format()) }} {{ $invoice->customer->customer_name ?? '' }} {{ number_format($invoice->grand_total,2) }}
@lang('general.no_details_found')
@endsection @push('scripts') @endpush