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

Invoices Table

Create New Invoice
@foreach($invoices as $invoice) @endforeach
Invoice ID Customer Name Date Action
{{1000+$invoice->id}} {{$invoice->customer->name}} {{$invoice->created_at->format('Y-m-d')}}
@endsection @push('js') @endpush