Search Pickup List

This page for search customer pickup list

@if(session()->has('error'))
{{ session('error') }}
@endif @if(session()->has('success'))
{{ session('success') }}
@endif
Search Pickup

Insert customer pickup code Ex : K-1

@if($pickup)
Handover Detail {!! $pickup->status_badge !!}
@if($pickup->status == \App\Services\Pickup\PickupHelperService::STATUS_READY_TO_DELIVER && auth()->user()->can('staff.inhouse') && $pickup->office_id == auth()->user()->office_id)
PIC
Picked On
Receiver Name @error('pickup_name') {{ $message }} @enderror

Payment Type

@error('payment_method'){{ $message }}@enderror @foreach(\App\Services\Pickup\PickupHelperService::paymentMethodLabel() as $key => $value)
@endforeach @error('payment_method') {{ $message }} @enderror
@if(in_array($payment_method, [\App\Services\Pickup\PickupHelperService::PAYMENT_METHOD_BANK_TRANSFER, \App\Services\Pickup\PickupHelperService::PAYMENT_METHOD_BOTH])) @endif @if(in_array($payment_method, [\App\Services\Pickup\PickupHelperService::PAYMENT_METHOD_CASH, \App\Services\Pickup\PickupHelperService::PAYMENT_METHOD_BOTH])) @endif
Total Billing {{ displayPriceFormat($pickup->total, '$') }}
Bank Transfer
$
@error('bank_transfer_received') {{ $message }} @enderror
Cash Receive
$
@error('cash_received') {{ $message }} @enderror
Total Payment {{ displayPriceFormat($total_payment, '$') }}
Balance {{ displayPriceFormat($balance, '$') }}

Prof Of Delivery


@error('prof_of_delivery'){{ $message }}@enderror * Only Image Allowed
@if ($prof_of_delivery) Invoice Preview:
@endif
Note @error('notes') {{ $message }} @enderror
@endif
@endif
@if($pickup)
Pickup Information
Owner Detail
  • Name {{ $pickup->user->name }}

  • Phone Number {{ $pickup->user->phone_number }}

  • Email {{ $pickup->user_email ?? "-" }}


Pickup Detail
Code {{ $pickup->code }}
Total Parcel {{ $pickup->parcels->count() }}
Destination {{ $pickup->dropPoint->label }}

Billing Detail
Total Billing (Actual) {{ displayPriceFormat($pickup->total, '$') }}
Payment Status {{ $pickup->payment_status_label }}
@if($pickup->payment_status == \App\Services\Pickup\PickupHelperService::PAYMENT_STATUS_PAID)
Payment Received Detail Method : {{ $pickup->payment_method_label }}
Amount : {{ displayPriceFormat($pickup->total_payment, '$') }}
@endif

@if($pickup->status == \App\Services\Pickup\PickupHelperService::STATUS_DELIVERED)
Handover Detail
  • PIC {{ $pickup?->pic?->name ?? "-" }}

  • Picked On {{ $pickup->pickup_datetime ?? "-" }}

  • Receiver Name {{ $pickup->pickup_name ?? "-" }}


@endif
Parcel List
@include('components.parcel.summary-box')
@endif