@extends('layouts.app') @section('title') {{ config('app.name', 'Laravel') }} | {{ __('common.users') }} @endsection @section('heading') {{ __('common.category') }} @endsection @section('heading-icon') admin_panel_settings @endsection @section('content')

reply_all  {{ __('common.go_back') }}

{{ __('common.Shipment_info') }}

Shipment Details-> Unit: {{ $request->units }} / Weight: {{ $request->weight }} | Height: {{ $request->height }} | Lenght: {{ $request->lenght }} | Width: {{ $request->width }}

@csrf @foreach ($servicesData as $data) @if ($request->shipper_country_code == 'US')
{{ $data['serviceType'] }} / ${{ $data['ratedShipmentDetails'][0]['totalNetFedExCharge'] }}
@else @if ($request->shipper_country_code != $request->recipient_country_code)
{{ $data['serviceType'] }} / ${{ $data['ratedShipmentDetails'][0]['totalNetFedExCharge'] }} (R${{$data['ratedShipmentDetails'][0]['totalNetFedExCharge'] / 0.2 }})
@else
{{ $data['name'] }} /{{ $data['company']['name'] }}/ {{ $data['price'] ?? '0' }}
@endif @endif @endforeach

Shipper Address

Recipient Address


@endsection @push('head.start') @endpush @push('body.end') @endpush