@extends('user::layouts.backend-master') @section('breadcrumb_title', trans('backend::translate.Invoice')) @push('styles') @endpush @section('content')
| Invoice ID | #{{ $order->order_number }} |
| Date | {{ $order->created_at->format('d/m/Y') }} |
| Paid Date | {{ $order->paid_at->format('d/m/Y') }} |
| Status | {{ ucfirst($order->payment_status) }} |
| Payment Method | {{ $order->payment_method ? ucfirst($order->payment_method) : 'N/A' }} |
| Product Name | Qty | Price | Total |
|---|---|---|---|
{{ $item->product_name }}@if ($item->product_sku)SKU: {{ $item->product_sku }} @endif @if ($item->product_description){{ $item->product_description }} @endif @if ($item->product_options)
@foreach ($item->product_options as $key => $value)
{{ ucfirst($key) }}: {{ $value }}
@endforeach
@endif
|
{{ $item->quantity }} |
{{ $order->currency }}{{ number_format($item->final_price, 2) }} |
{{ $order->currency }}{{ number_format($item->total_price, 2) }} |
{{ $order->notes }}