@extends('layouts.admin') @section('content')
{{ __('Shipments') }}
@forelse($shipments as $shipment) @empty @endforelse
No Order ID Name Status Total Qty Total Weight (gram) Action
{{ $loop->iteration }} {{ $shipment->order->code }}
{{ $shipment->order->order_date }}
{{ $shipment->order->customer_full_name }} {{ $shipment->status }}
{{ $shipment->shipped_at }}
{{ $shipment->total_qty }} {{ $shipment->total_weight }}
No products found.
{!! $shipments->appends(request()->all())->links() !!}
@endsection