@extends('layouts.app') @section('content') @php $noteType = $noteType ?? 'credit'; $title = ucfirst($noteType) . ' Note'; $routePrefix = match($noteType) { 'credit' => 'credit_note', 'debit' => 'debit_note', 'refund' => 'refund_note', default => 'credit_note' }; $store = route('note.store', ['note_type' => $routePrefix]); $redirect = url("/{$routePrefix}/listing"); $fetchRoute = url("/{$routePrefix}/fetchInvoiceItems"); @endphp

MySyncTax e-Invoice - {{ $title }}

E-Invoice No:
Date:
UUID:
Supplier Info

Name:

TIN:

Address:

Buyer Info

Name:

TIN:

Address:

@csrf
No Description Qty Unit Price Discount Tax Total Select
Total {{ $title }}: MYR 0.00
@endsection