@extends('layouts.master') @section('titel', 'Invoice | ') @section('content') @include('partials.header') @include('partials.sidebar') Invoices Table Invoice Invoice Table Create New Invoice Invoice ID Customer Name Date Action @foreach($invoices as $invoice) {{1000+$invoice->id}} {{$invoice->customer->name}} {{$invoice->created_at->format('Y-m-d')}} @csrf @method('DELETE') @endforeach @endsection @push('js') @endpush