@if($integration && $integration->isActive())
Connected! Your Shopify store is connected and active.
Shop Domain: {{ $integration->shop_domain }}
@else
Not Connected! Please connect your Shopify store to start receiving order notifications.
Connect Shopify
@endif
@if($integration && $integration->isActive())
{{ $orderStatistics['total_orders'] ?? 0 }}
Total Orders
{{ $orderStatistics['paid_orders'] ?? 0 }}
Paid Orders
{{ $orderStatistics['fulfilled_orders'] ?? 0 }}
Fulfilled Orders
{{ $notificationStatistics['total_notifications'] ?? 0 }}
Notifications Sent
| Order # |
Customer |
Status |
Total |
Date |
Actions |
@forelse($recentOrders as $order)
| {{ $order->order_number }} |
@if($order->name)
{{ $order->name }}
@if($order->email)
{{ $order->email }}
@endif
@else
N/A
@endif
|
{{ $order->status_label }}
|
{{ $order->formatted_total_price }} |
{{ $order->created_at->format('M d, Y H:i') }} |
|
@empty
|
No orders found
|
@endforelse
| Type |
Order # |
Status |
Sent At |
Actions |
@forelse($recentNotifications as $notification)
|
{{ $notification->notification_type_label }}
|
{{ $notification->order->order_number ?? 'N/A' }} |
{{ $notification->status_label }}
|
{{ $notification->sent_at ? $notification->sent_at->format('M d, Y H:i') : 'N/A' }} |
@if($notification->isFailed())
@endif
|
@empty
|
No notifications found
|
@endforelse
@endif