@extends('pages.admin.woo-commerce.woo-app') @section('woo-content')
| # | {{ __('order number') }} | {{ __('customer') }} | {{ __('status') }} | {{ __('total') }} | {{ __('date created') }} | |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $order->number }} | {{-- Show billing name if exists, else customer_id --}} @if ($order->billing?->firstName || $order->billing?->lastName) {{ $order->billing?->firstName }} {{ $order->billing?->lastName }} @else #{{ $order->customerId }} @endif | {{ $order->status }} | {{ $order->total }} {{ $order->currency }} | {{ $order->dateCreated?->format('Y-m-d H:i') }} | {{ __('view details') }} |