@extends('layouts.app') @section('content')
@if(isset($errors) && $errors->any()) @endif
@csrf
Upload

Bulk Order

Upload Bulk Order In Excel / CSV

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) }}
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}}
Bulk Format Template Details
use this Bulk Format Template to upload bulk orders
@php $counter = 0; @endphp @foreach($bulkFormat as $key => $format) @endforeach
# Serial No Name Description
{{++$counter}} {{$key}} {{$format}}
@endsection @section('custom-js') @endsection