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