@extends('layouts.app') @section('content')
Printing Slip
@csrf

Select Number of Prints

Vendor Details

Vendor POC


{{$vendor_details->focal_person_name}}

Vendor Email


{{$vendor_details->focal_person_email}}

Vendor POC Number


{{$vendor_details->focal_person_phone}}
AHL Details

Account Created By


{{$vendor_details->createdBy ? $vendor_details->createdBy->name : ''}}

Vendor Registered At


{{date('d M Y h:i a', strtoTime($vendor_details->created_at))}}

Assigned Sales Person


{{$vendor_details->pocPerson ? $vendor_details->pocPerson->name : ''}}

Sales Person Number


{{$vendor_details->pocPerson ? $vendor_details->pocPerson->userDetail->phone : ''}}

Sales Person Email


{{$vendor_details->pocPerson ? $vendor_details->pocPerson->email : ''}}

Sales Person Assign Date


@if($vendor_details->datentime == NULL)
@else
{{date('d M Y h:i a', strtoTime($vendor_details->datentime))}}
@endif

Assigned CS Person


{{$vendor_details->csrPerson ? $vendor_details->csrPerson->name : ''}}

CS Person Number


{{$vendor_details->csrPerson ? $vendor_details->csrPerson->userDetail->phone : ''}}

CS Person Email


{{$vendor_details->csrPerson ? $vendor_details->csrPerson->email : ''}}

CS Person Assign Date


@if($vendor_details->csr_datentime == NULL)
@else
{{date('d M Y h:i a', strtoTime($vendor_details->csr_datentime))}}
@endif

Assigned Pickup Supervisor


{{$vendor_details->pickupPerson ? $vendor_details->pickupPerson->name : ''}}

Pickup Supervisor Number


{{$vendor_details->pickupPerson ? $vendor_details->pickupPerson->userDetail->phone : ''}}

Pickup Supervisor Email


{{$vendor_details->pickupPerson ? $vendor_details->pickupPerson->email : ''}}

Pickup Supervisor Assign Date


@if($vendor_details->pickup_datentime == NULL)
@else
{{date('d M Y h:i a', strtoTime($vendor_details->pickup_datentime))}}
@endif
Additional Details

Vendor Fuel Charges


{{$vendor_details->fuel}}

Vendor GST


{{$vendor_details->gst}}
Vendor Weight ID's
Use Weight ID's In your Bulk Order
Additional Kg

Rs. {{$vendor_details->addational_kgs}}
@if(count($vendorWeights) > 0) @foreach($vendorWeights as $key => $vendorWeight) @endforeach @else @endif
# Weight ID Weight Price
{{$vendorWeight->id}} {{$vendorWeight->ahlWeight->weight . ' (' . $vendorWeight->city->first()->name . ')'}} Rs. {{$vendorWeight->price}}
Vendor Pickup Locations
Use Pickup Locations Id In your Bulk Order
@foreach($vendorPickupLocations as $key => $location) @endforeach
# Pickup Location ID Location Name Location Status
{{$location->id}} {{$location->address}} {{ Helper::status($location->status) }}
@endsection @section('custom-js') @endsection