@extends('layouts.app') @section('title','Debit Notes') @section('content')
@forelse($dn as $item)@empty@endforelse
DN #SupplierDateTotalStatus
{{ $item->number ?? '—' }}{{ $item->supplier->name ?? '—' }}{{ $item->date ?? '—' }}{{ $item->total ?? '—' }}{{ $item->status ?? '—' }}
No records found
@endsection