@extends('admin.layouts.app')
@section('title', '订单监控')
@section('page_title', '订单监控')
@section('content')
@php
$exportQuery = http_build_query(array_filter($filters, fn ($value) => $value !== null && $value !== ''));
@endphp
筛选条件
@foreach($filters['validation_errors'] as $validationError)
| ID | 商家 | 订单号 | 平台 | 买家 | 支付 | 金额 | 创建时间 | 支付时间 | 发货时间 | 完成时间 | 状态 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $order->id }} | {{ $order->merchant?->name ?? ('商家#'.$order->merchant_id) }} | {{ $order->order_no }} | {{ $platformLabels[$order->platform] ?? $order->platform }} | {{ $order->buyer_name }} | {{ $paymentChannelLabels[$order->payment_channel] ?? $order->payment_channel }} {{ $paymentStatusLabels[$order->payment_status] ?? $order->payment_status }} |
¥{{ number_format($order->pay_amount, 2) }} | {{ $order->created_at?->format('Y-m-d H:i') }} | {{ $order->paid_at?->format('Y-m-d H:i') ?? '-' }} | {{ $order->shipped_at?->format('Y-m-d H:i') ?? '-' }} | {{ $order->completed_at?->format('Y-m-d H:i') ?? '-' }} | {{ $statusLabels[$order->status] ?? $order->status }} | |
| 暂无订单 | ||||||||||||