@extends('layouts.app') @section('title', 'WooCommerce Orders') @push('head') @endpush @section('content')

WooCommerce Orders

@forelse($orders as $order) @empty @endforelse
Order # Customer Total Status Payment Fulfillment Date Actions
{{ $order->order_number }}
{{ $order->woocommerce_order_id }}
{{ $order->customer_name }} @if($order->customer_email && $order->customer_email !== 'N/A')
{{ $order->customer_email }} @endif @if($order->customer_phone && $order->customer_phone !== 'N/A')
{{ $order->customer_phone }} @endif
{{ $order->formatted_total_price }}
{{ $order->currency }}
{{ $order->status_label }} {{ ucfirst($order->payment_status) }} {{ ucfirst($order->fulfillment_status) }} {{ $order->created_at->format('M d, Y H:i') }}
No orders found
@if($orders instanceof \Illuminate\Pagination\LengthAwarePaginator && $orders->hasPages())
{{ $orders->links() }}
@endif
@push('scripts') @endpush @endsection