@extends('layouts.master') @section('titel', 'Customer | ') @section('content') @include('partials.header') @include('partials.sidebar') Customer Table Table to display analytical data effectively Tables Product Table Invoice Create 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
Table to display analytical data effectively