@extends('layouts.app') @section('title', 'Invoices') @section('content')

Invoices

Create Invoice
@foreach($invoices as $invoice) @endforeach
S.No Invoice No Invoice Date Customer Name Mobile Total Amount Action
{{ $loop->iteration }} {{ $invoice->invoice_no }} {{ $invoice->invoice_date->format('d/m/Y') }} {{ $invoice->customer->customer_name }} {{ $invoice->customer->mobile }} ₹{{ number_format($invoice->grand_total, 2) }}
@endsection @push('scripts') @endpush