@extends('layouts.master') @section('titel', 'Invoice | ') @section('content') @include('partials.header') @include('partials.sidebar')

Invoices Table

Create New Invoice
@foreach($invoices as $invoice) @endforeach
Inv# Customer Name Date Amount Actions
{{ $invoice->invoice_no }} {{ $invoice->name }} {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('d-m-Y') }} {{ number_format($invoice->totalamount, 2) }}
@endsection @push('js') @endpush