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