@extends('frontend.layouts.app') @section('title', __('Pickup List')) @section('content')
@if(in_array($pickup->status, [\App\Services\Pickup\PickupHelperService::STATUS_READY_TO_DELIVER]))
{!! $pickup->dropPoint->pickup_remark !!} {{-- @if($pickup->dropPoint->code == "K")--}} {{-- @include('frontend.user.pickup.message.kln')--}} {{-- @else--}} {{-- @include('frontend.user.pickup.message.lbk')--}} {{-- @endif--}}
@endif
Customer Detail

{{ $pickup?->user->name }}

  • {{ $pickup?->user->email }}
  • {{ $pickup?->user?->phone_number }}
@if(in_array($pickup->status, [\App\Services\Pickup\PickupHelperService::STATUS_READY_TO_DELIVER]))
Pickup Detail
  • Code: {{ $pickup->code }}
  • Total Parcels: {{ $pickup->parcels->count() }}
@endif
@if(auth()->user()->type == \App\Domains\Auth\Models\User::TYPE_USER && !in_array($pickup->status, [\App\Services\Pickup\PickupHelperService::STATUS_READY_TO_DELIVER, \App\Services\Pickup\PickupHelperService::STATUS_DELIVERED]))
This item is not ready for pickup. Please wait until further notice.
@else

Grand Total : {{ displayPriceFormat($pickup->total, '$') }}


@foreach($pickup->parcels as $parcel) @endforeach
Item ID Amount
{{ $parcel->coding }}
{{ $parcel->tracking_no }}
{{ displayPriceFormat($parcel->total_billing, '$') }}
Grand Total : {{ displayPriceFormat($pickup->total, '$') }}
Invoice was created on a computer and is valid without the signature and seal.
@endif
@include('components.parcel.summary-box')
{{--
--}} {{-- --}} {{-- --}} @endsection