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

Purchases Table

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