@php $url = env('FRONT_URL') . 'rate-quotes/' . $data['rate_details']['quote_id']; @endphp
Darydex Logo
{{ ucfirst($data['rate_details']['type']) }} Quote #{{ $data['rate_details']['quote_id'] }} has been rated by {{ ucfirst($data['rate_details']['owner']) }}!
Type: {{ ucfirst($data['rate_details']['type']) }} Length: @if ($data['rate_details']['length'] == null) NA @else {{ $data['rate_details']['length'] }} @endif
Weight: @if ($data['rate_details']['weight'] == null) NA @else {{ $data['rate_details']['weight'] }} @endif Equipment: @if ($data['rate_details']['equipment'] == null) NA @else {{ $data['rate_details']['equipment'] }} @endif
Quantity: @if ($data['rate_details']['quantity'] == null) NA @else {{ $data['rate_details']['quantity'] }} @endif Commodity: @if ($data['rate_details']['commodity'] == null) N/A @else {{ ucfirst($data['rate_details']['commodity']) }} @endif
 
Pickup Information Delivery Information
{{($data['rate_details']['type'] == 'export') ? 'Address:' : 'Market:' }} {{ltrim($data['rate_details']['origin_address'],',')}}
@if ($data['rate_details']['type'] == 'export') @endif
{{($data['rate_details']['type'] == 'export') ? 'Market: ' : 'Address: ' }} {{ltrim($data['rate_details']['destination_address'],',')}}
Terminal: {{$data['rate_details']['terminal']}}
@if ($data['rate_details']['type'] == 'import') @endif
Terminal: {{$data['rate_details']['terminal']}}
Date: {{$data['rate_details']['pickup_date']}}
Date: {{$data['rate_details']['delivery_date']}}
Time: {{$data['rate_details']['pickup_time_start']}} to {{$data['rate_details']['pickup_time_end']}}
Time: {{$data['rate_details']['delivery_time_start']}} to {{$data['rate_details']['delivery_time_end']}}
Roundtrip Distance: {{ number_format((float)$data['rate_details']['miles'], 2, '.', ',') }}
 
Rate Summary
Linehaul: @if ($data['rate_details']['linehaul'] == null) $0.00 @else ${{ number_format((float) $data['rate_details']['linehaul'], 2, '.', ',') }} @endif FSC%: @if ($data['rate_details']['fsc'] == null) 0 @else {{ $data['rate_details']['fsc'] }} @endif
Linehaul+FSC Total: @if ($data['rate_details']['linehaul_fsc_total'] == null) $0.00 @else ${{ number_format((float) $data['rate_details']['linehaul_fsc_total'], 2, '.', ',') }} @endif Chassis/Day: @if ($data['rate_details']['chassis'] == null) $0.00 @else ${{ number_format((float) $data['rate_details']['chassis'], 2, '.', ',') }} @endif
 
Applicable Accessorials
    @if ( !empty($data['rate_details']['accessorials']) && array_key_exists(1, $data['rate_details']['accessorials']) && is_array($data['rate_details']['accessorials'][1]) && count($data['rate_details']['accessorials'][1]) > 0) @for ($i = 0; $i < count($data['rate_details']['accessorials'][1]); $i++)
  • {{ $data['rate_details']['accessorials'][1][$i]['name'] }}:

    ${{ number_format((float) $data['rate_details']['accessorials'][1][$i]['value'], 2, '.', ',') }}

  • @endfor @else N/A @endif
  • *Estimated Total:

    @if ($data['rate_details']['estimated_total'] == null) $0.00 @else ${{ number_format((float) $data['rate_details']['estimated_total'], 2, '.', ',') }} @endif

*Estimated total includes linehaul, fuel, minimum chassis days and applicable accessorials

Other Accessorials may include but not limited to:

    @if (!empty($data['rate_details']['accessorials']) && array_key_exists(0, $data['rate_details']['accessorials']) && is_array($data['rate_details']['accessorials'][0]) && count($data['rate_details']['accessorials'][0]) > 0) @for ($i = 0; $i < count($data['rate_details']['accessorials'][0]); $i++)
  • {{ $data['rate_details']['accessorials'][0][$i]['name'] }}:

    ${{ number_format((float)$data['rate_details']['accessorials'][0][$i]['value'],2, '.', ',') }}

  • @endfor @else N/A @endif
Quote Details:
@if($data['rate_details']['customer_notes'] == null) N/A @else {!! nl2br(e(ucfirst($data['rate_details']['customer_notes']))) !!} @endif