@extends('backEnd.layouts.master') @section('title', 'Invoice #' . $order->invoice_id) @section('content')
{{ $generalsetting->name }}
{{ $contact->phone }}
{{ $contact->email }}
{{ $order->shipping ? $order->shipping->name : 'N/A' }}
{{ $order->shipping ? $order->shipping->address : '' }}
{{ $order->shipping ? $order->shipping->area : '' }}
Phone: {{ $order->shipping ? $order->shipping->phone : '' }}
Status: {{ $order->status->name ?? 'Paid' }}
Method: {{ $order->payment ? $order->payment->payment_method : 'COD' }}
{{ $contact->address }}
Dhaka, Bangladesh
| SKU / Code | Item & Description | Price | Qty | Amount |
|---|---|---|---|---|
| ITEM-{{ $value->product_id }} | {{ $value->product_name }} @if($value->product_color) COLOR: {{ $value->product_color }} @endif @if($value->product_size) • SIZE: {{ $value->product_size }} @endif | ৳{{ number_format($value->sale_price, 0) }} | {{ $value->qty }} | ৳{{ number_format($value->sale_price * $value->qty, 0) }} |