@extends('layouts.app') @section('auth-content') @php $ackKey = \Illuminate\Support\Facades\Request::segment('3') @endphp
@if(count($bookings) == 0)
No record found!
@else
Please click the below button to print the acknowledgement.
@endif
@if(substr($ackKey, 0, 1) == 's' )
@foreach($bookings as $booking)

SHIPPER

NAME/DEPT: {{ $booking->customer_name }}

ADDRESS: {{ $booking->add_line_1.' '.$booking->add_line_2 }}

{{ $booking->city.', '.$booking->state }}

TEL: {{ $booking->mobile_number }}

PIN: {{ $booking->origin_pincode }}

Origin

Destination

{{ $booking->origin_pincode }}

{{ $booking->delivery->dest_pincode }}

COURIER CONSIGNMENT NOTE

Booking

Branch

Name/Code

Dox

1

{{ isset($booking->user->office->code) ? $booking->user->office->code : '' }}

@if($booking->origin_office_type == 'BR' || $booking->origin_office_type == 'HO' ) {{ $booking->office->branch_name }} @endif @if($booking->office_type == 'FR') {{ $booking->office->enterprise_name }} @endif

{{ $booking->consg_type }}

OUR LIABILITY FOR ANY LOSS OR DAMAGE TO THE SHIPMENT IS LIMITED TO RS. 100/- ONLY

BOOKING OF CURRENCY / JEWELLERY IS BANNED, SHARE CERTIFICATES with blank share transfer from are not allowed, Claims should be preferred & settled within 30 days of booking centre only

I/We certify that this consignment does not contain personal mail which Infringes Indian Postal Act nor any Cash/Jewellery, contraband drugs or any prohibited items as per Central/State/Local Authorities.
I/We undertake to pay all Central/State/Local levels payable on this consignment.

Sender Signature

Date

Time

For HTHC PVT. LTD.

{{ date('d-m-Y', strtotime($booking->created_at)) }}

{{ date('H:i', strtotime($booking->created_at)) }}

RECEIVER

NAME/DEPT: {{ $booking->delivery->receiver_name }}

ADDRESS: {{ $booking->delivery->add_line_1.' '.$booking->delivery->add_line_2 }}

{{ $booking->delivery->city.', '.$booking->delivery->state }}

TEL: {{ $booking->delivery->mobile_number }}

PIN: {{ $booking->delivery->dest_pincode }}

Plan

{{ $booking->subs_name }}

Weight

Amount(Inc. GST)

{{ $booking->final_weight ?? ($booking->consg_type == 'dox' ? $booking->weight : $booking->vol_weight) }} Kg

Rs. {{ $booking->final_amount ?? $booking->booked_amount }}

barcode

{{ $booking->consg_number }}

THANKS FOR USING OUR SERVICES

We have the right to accept or refuse the booking of any document or parcel. This is a Non-Negotiable consignment note subject to the terms & conditions of contract. A copy of which is available at the regd. office of HTHC (P) LTD., Who shall not be liable for special incidental or consequential damages arising from the carriage hereof. HTHC (P) Ltd., disclaims all warranties expressed or implied with respect to this shipment for any loss or damages. Limits liability to mix of a Rs. 100/- (Rs. One Hundered only) for any case per consigment. All enquiries to be made to the booking center in writing within 30 days from the date of booking.

H.O.: 5/3, GROUND FLOOR, VOKKALIGARA BHAVANA HUDSON CIRCLE, BANGALORE - 560 027.
PH (080 22292470 / 71).

@endforeach
@else
@foreach($bookings as $booking) @endforeach

SHIPPER

NAME/DEPT: {{ $booking->customer_name }}

ADDRESS: {{ $booking->add_line_1.' '.$booking->add_line_2 }}

{{ $booking->city.', '.$booking->state }}

TEL: {{ $booking->mobile_number }}

PIN: {{ $booking->origin_pincode }}

Origin

Destination

{{ $booking->origin_pincode }}

{{ $booking->delivery->dest_pincode }}

COURIER CONSIGNMENT NOTE

Booking

Branch

Name/Code

Dox

1

{{ isset($booking->user->office->code) ? $booking->user->office->code : '' }}

@if($booking->origin_office_type == 'BR' || $booking->origin_office_type == 'HO' ) {{ $booking->office->branch_name }} @endif @if($booking->office_type == 'FR') {{ $booking->office->enterprise_name }} @endif

{{ $booking->consg_type }}

OUR LIABILITY FOR ANY LOSS OR DAMAGE TO THE SHIPMENT IS LIMITED TO RS. 100/- ONLY

BOOKING OF CURRENCY / JEWELLERY IS BANNED, SHARE CERTIFICATES with blank share transfer from are not allowed, Claims should be preferred & settled within 30 days of booking centre only

I/We certify that this consignment does not contain personal mail which Infringes Indian Postal Act nor any Cash/Jewellery, contraband drugs or any prohibited items as per Central/State/Local Authorities.
I/We undertake to pay all Central/State/Local levels payable on this consignment.

Sender Signature

Date

Time

For HTHC PVT. LTD.

{{ date('d-m-Y', strtotime($booking->created_at)) }}

{{ date('H:i', strtotime($booking->created_at)) }}

RECEIVER

NAME/DEPT: {{ $booking->delivery->receiver_name }}

ADDRESS: {{ $booking->delivery->add_line_1.' '.$booking->delivery->add_line_2 }}

{{ $booking->delivery->city.', '.$booking->delivery->state }}

TEL: {{ $booking->delivery->mobile_number }}

PIN: {{ $booking->delivery->dest_pincode }}

Plan

{{ $booking->subs_name }}

Weight

Amount(Inc. GST)

{{ $booking->final_weight ?? ($booking->consg_type == 'dox' ? $booking->weight : $booking->vol_weight) }} Kg

Rs. {{ $booking->final_amount ?? $booking->booked_amount }}

barcode

{{ $booking->consg_number }}

Received in Good Order and Condition

@if (count($booking->delivery->receiverImageUrl) != 0) @endif @if(isset($booking->delivery->receiverSignUrl[0]->url)) @endif

Receiver Name: @if(isset($booking)) {{ $booking->delivery->rec_name }} ( {{ $booking->delivery->tookstatus }} ) @endif

Date & Time: {{ $booking->delivery->delivery_datetime ? date('d-m-Y H:i', strtotime($booking->delivery->delivery_datetime)): '' }}

Receiver Photo

Receiver Signature

H.O.: 5/3, GROUND FLOOR, VOKKALIGARA BHAVANA HUDSON CIRCLE, BANGALORE - 560 027.
PH (080 22292470 / 71).

@endif
@endsection