{{ $pickups->links() }}
@foreach($pickups as $pickup) @endforeach
{{ __('Name') }} {{ __('Phone Number') }} {{ __('Code') }} {{ __('Parcel Coding') }} {{ __('Quantity') }} {{ __('Price') }} {{ __('COD') }} {{ __('Tax') }} {{ __('Permit') }} {{ __('Service Charge') }} {{ __('Total') }} {{ __('Location') }} {{ __('Status') }} {{ __('Action') }}
{{ $pickup?->user?->name }} {{ $pickup?->user?->phone_number }} {{ $pickup->code }} @foreach($pickup->parcels as $parcel) {{ __(':coding - :price', ['coding' => $parcel->coding, 'price' => displayPriceFormat($parcel->total_billing, '$')]) }}
@endforeach
{{ $pickup->parcels->count() }} {{ displayPriceFormat($pickup->gross_price, '$') }} {{ displayPriceFormat($pickup->cod, '$') }} {{ displayPriceFormat($pickup->tax, '$') }} {{ displayPriceFormat($pickup->permit, '$') }} {{ displayPriceFormat($pickup?->service_charge, '$') }} {{ displayPriceFormat($pickup?->total, '$') }} {{ $pickup?->dropPoint->code }} {!! $pickup?->status_badge !!} {{ __('Send Notification') }}