@extends('layouts.admin') @section('content') @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@csrf
@if (!session()->has('agent_location')) @else @php $agentLocationCode = session('agent_location'); $selectedLocation = $locations->firstWhere('locker_code', $agentLocationCode); @endphp @if ($selectedLocation) @else @endif @endif @can('rider_assign_to_return') @endcan @can('return_product_collection_by_agent') Collect @endcan Download List
@forelse ($drop_data as $data) @empty @endforelse
Mobile Tracking Number Location Assign Logistics Collected
{{ $data->customer_mobile ?? '' }} {{ $data->tracking_number ?? '' }} {{ $data->location->location_landmark ?? '' }} @if ($data->productTracking->return_rider_name && $data->productTracking->return_rider_number) {{ $data->productTracking->return_rider_name }} ({{ $data->productTracking->return_rider_number }}) @else Not Assigned @endif {{ $data->productTracking->product_returned_by_rider == 1 ? 'Collected' : 'Not Yet' }}
No data found
@endsection @section('scripts') @parent @endsection