Logo
MURUPP GADA DESIGN STUDIO LLP
PAN: ACAFM6335J

INVOICE: #{{ data_get($order, 'invoice_id', '-') }}

Billing Address :

@foreach(explode(',', data_get($order, 'billing_address', '-')) as $part) {{ trim($part) }}
@endforeach

Shipping Address :

@foreach(explode(',', data_get($order, 'shipping_address', '-')) as $part) {{ trim($part) }}
@endforeach

Customer Details :

Customer Name: {{ data_get($order, 'customer_name', '-') }}
Email: {{ data_get($order, 'customer_email', '-') }}
Phone: +91 {{ data_get($order, 'customer_phone', '-') }}


{{-- Table --}} @php $items = json_decode(data_get($order, 'product_names', '[]'), true); $quantities = json_decode(data_get($order, 'quantities', '[]'), true); $prices = json_decode(data_get($order, 'prices', '[]'), true); $prints = json_decode(data_get($order, 'prints', '[]'), true); $sizes = json_decode(data_get($order, 'sizes', '[]'), true); @endphp @foreach($items as $index => $item) @endforeach
# Product Name Qty Size Print Rate Amount
{{ $index + 1 }} {{ $item }} {{ $quantities[$index] ?? '-' }} {{ $sizes[$index] ?? '-' }} {{ !empty($prints[$index]) ? $prints[$index] : '-' }} ₹ {{ number_format($prices[$index] ?? 0, 2) }} ₹ {{ number_format(($prices[$index] ?? 0) * ($quantities[$index] ?? 1)) }}
Sub Total ₹ {{ number_format(data_get($order, 'total_price', 0)) }}
Total (inclusive of taxes) ₹ {{ number_format(data_get($order, 'total_price', 0)) }}








{{-- Address Section --}} {{-- Footer --}}