@extends('layouts.master') @section('title', 'Debt/Credit Note Information') @section('css') @endsection @section('content')
Sales Debit Note {{__('Information')}}
@foreach ($debtCreditNotes as $note) @endforeach
Debit Note Number Debit Note Date Invoice Number Status Action
{{ $note->sales_credit_note_number }} {{ \Carbon\Carbon::parse($note->sales_credit_note_date)->format('d M Y') }} {{ $note->invoice_number }} {{ ucfirst($note->status) }} edit
Debit Note Number Debit Note Date Invoice Number Status Action
@if (session('success')) @endif @if (session('error')) @endif @endsection @section('scripts') @endsection