@extends('layouts.app') @section('title','Credit Notes') @section('content')
@forelse($cn as $item)@empty@endforelse
CN #CustomerDateTotalStatus
{{ $item->number ?? '—' }}{{ $item->customer->name ?? '—' }}{{ $item->date ?? '—' }}{{ $item->total ?? '—' }}{{ $item->status ?? '—' }}
No records found
@endsection