platform_orders index: compact view shows date-only timestamps
This commit is contained in:
@@ -1076,8 +1076,20 @@
|
||||
</td>
|
||||
<td>¥{{ number_format((float) $order->payable_amount, 2) }}</td>
|
||||
<td>¥{{ number_format((float) $order->paid_amount, 2) }}</td>
|
||||
<td>{{ optional($order->placed_at)->format('Y-m-d H:i:s') ?: '-' }}</td>
|
||||
<td>{{ optional($order->paid_at)->format('Y-m-d H:i:s') ?: '-' }}</td>
|
||||
<td>
|
||||
@if($isFullView)
|
||||
{{ optional($order->placed_at)->format('Y-m-d H:i:s') ?: '-' }}
|
||||
@else
|
||||
{{ optional($order->placed_at)->format('Y-m-d') ?: '-' }}
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if($isFullView)
|
||||
{{ optional($order->paid_at)->format('Y-m-d H:i:s') ?: '-' }}
|
||||
@else
|
||||
{{ optional($order->paid_at)->format('Y-m-d') ?: '-' }}
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@php
|
||||
$syncedId = (int) data_get($order->meta, 'subscription_activation.subscription_id', 0);
|
||||
|
||||
Reference in New Issue
Block a user