@extends('layouts/layoutMaster')
@section('title', __('Transport Details'))
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('content')
| {{ __('#') }} | {{ __('Status') }} | {{ __('Customer') }} | {{ __('Pickup') }} | {{ __('Address') }} |
|---|---|---|---|---|
| {{ $s->number }} | @php($status = $s->status) @if($status instanceof \App\Enums\ShipmentStatusEnum) {{ $status->label() }} @else {{ $status }} @endif | {{ $s->customer_name ?? '-' }} | {{ $s->store?->user?->name ?? $s->tardPoint?->user?->name ?? '-' }} | {{ $s->address_details ?? '-' }} |
| {{ __('No shipments') }} | ||||