@extends('layouts.master') @section('titel', 'Invoice | ') @section('content') @include('partials.header') @include('partials.sidebar') Invoices Table Invoice Invoice Table Create New Invoice Inv# Customer Name Date Amount Actions @foreach($invoices as $invoice) {{ $invoice->invoice_no }} {{ $invoice->name }} {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('d-m-Y') }} {{ number_format($invoice->totalamount, 2) }} @csrf @method('DELETE') @endforeach @endsection @push('js') @endpush