@extends('layouts.app', ['title' => 'Invoice | Print Cards']) @section('content')

{{ $platformName }}

GST-ready invoice preview
{{ $order->invoice_number }}
{{ $order->created_at->format('d M Y') }}

Bill To

{{ $order->address?->recipient_name }}
{{ $order->address?->line1 }}
{{ $order->address?->city }}, {{ $order->address?->state }} - {{ $order->address?->postal_code }}

Support

{{ $supportEmail }}
Order: {{ $order->order_number }}
Payment: {{ ucfirst($order->payment_status) }}
@foreach($order->items as $item) @endforeach
Item Configuration Amount
{{ $item->item_name }} {{ $item->page_size }} | {{ strtoupper($item->print_mode) }} | {{ $item->copies }} copies Rs {{ number_format($item->total_price, 2) }}
SubtotalRs {{ number_format($order->subtotal, 2) }}
DiscountRs {{ number_format($order->discount_amount, 2) }}
GSTRs {{ number_format($order->gst_amount, 2) }}
CourierRs {{ number_format($order->delivery_amount, 2) }}

TotalRs {{ number_format($order->total_amount, 2) }}
@endsection