@extends('layouts.agent.app') @section('content')
AGENT NAME :{{$agents->name}}
PRODUCT DETAILS
@if($agent_assinged->status=='P') @elseif($agent_assinged->status=='PC') @elseif($agent_assinged->status=='CL') @elseif($agent_assinged->status=='H') @elseif($agent_assinged->status=='D') @elseif($agent_assinged->status=='S') @endif
ORDER NO : {{$agent_assinged->agent_order_id}}

Products

    @foreach($agent_product_list as $product) @if($product->agent_id == $agentId)
  1. {{$product->item}}
  2. @endif @endforeach

Delivery Address : {{$orders->delivery_address}}

Customer Contact : {{$orders->billing_mobile}}

@php $price=0; @endphp
@csrf @if($agent_assinged->status == 'PC' || $agent_assinged->track_no != "") @endif @if($agent_assinged->status == 'CL' || $agent_assinged->status == 'D') @else @endif
Total Price: {{ $agent_assinged->totalPrice }}
Extra Delivery Charge
Enter The Reason
@if($agent_assinged->status == "P")

@elseif($agent_assinged->status == "PC")

@elseif($agent_assinged->status == "S")

@elseif($agent_assinged->status == "CL") @elseif($agent_assinged->status == "H")
@elseif($agent_assinged->status == "H") @endif
@error('status') @enderror @error('track_no') @enderror @error('reason') @enderror
@endsection