@extends('admin.layouts.main') @php $page_name = 'Shiprocket Orders'; @endphp @section('style') @endsection @section('content')

{{ $page_name }}

@forelse ($shiprocketOrders as $order) @empty @endforelse
# Order ID Channel Order ID Shipment ID Status AWB Code Courier Name Created At Actions
{{ $loop->iteration }} {{ $order->order_id }} {{ $order->channel_order_id }} {{ $order->shipment_id }} {{ $order->status }} {{ $order->awb_code }} {{ $order->courier_name }} {{ $order->created_at->format('d-m-Y H:i') }} View @if ($order->active != 0)
@csrf
@else
@csrf
@endif
No orders found.
{{ $shiprocketOrders->links() }}
@endsection @section('script') @endsection