@extends('layouts.app') @section('title','Purchase Invoices') @section('content')
| Bill # | Supplier | Date | Total | Outstanding | Status | |
|---|---|---|---|---|---|---|
| {{ $item->number ?? '—' }} | {{ $item->supplier->name ?? '—' }} | {{ $item->date ?? '—' }} | {{ $item->total ?? '—' }} | {{ $item->outstanding ?? '—' }} | {{ $item->status ?? '—' }} | |
| No records found | ||||||