@extends('layouts.admin') @section('page-title', 'Pickup Hub: ' . $pickupHub->name) @section('content')
{{ $pickupHub->address }}
{{ $pickupHub->city }}, {{ $pickupHub->state }} {{ $pickupHub->zip }}
{{ $pickupHub->country }}
@if($pickupHub->latitude && $pickupHub->longitude)Lat: {{ $pickupHub->latitude }}, Lng: {{ $pickupHub->longitude }}
@endif| Order # | Customer | Status | Pickup Status | |
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->customer->name }} | {{ ucfirst(str_replace('_', ' ', $order->status)) }} | {{ $order->picked_up_at ? 'Picked up ' . $order->picked_up_at->diffForHumans() : 'Waiting' }} | View |