@extends('layouts.app') @section('content')

Credit Notes

Note

Manage and track all credit notes in the system


{{ $total }}

Total Credit Notes
Created in the system

{{ $submitted }}

Submitted
Sent to LHDN

New Credit Note
@foreach ($creditNotes as $note) @endforeach
Credit Note # Company Customer Amount Date LHDN Status Actions
{{ $note->invoice_no }}
UUID: {{ $note->uuid }}
{{ $note->supplier_name }}
TIN: {{ $note->supplier_tin }}
{{ $note->customer_name }}
{{ $note->customer_email }}
RM {{ number_format($note->price, 2) }} {{ \Carbon\Carbon::parse($note->issue_date)->format('d-m-Y') }} @if ($note->invoice_status == 'submitted') Submitted @else Draft @endif View
{{ $creditNotes->links() }}
@endsection