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

Shopify Orders

@forelse($orders as $order) @empty @endforelse
Order # Customer Total Status Payment Fulfillment Date Actions
{{ $order->order_number }}
{{ $order->shopify_order_id }}
{{ $order->name }} @if($order->email)
{{ $order->email }} @endif @if($order->phone)
{{ $order->phone }} @endif
{{ $order->formatted_total_price }}
{{ $order->currency }}
{{ ucfirst($order->status) }} {{ ucfirst(str_replace('_', ' ', $order->financial_status)) }} {{ ucfirst(str_replace('_', ' ', $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