@extends('layouts.admin') @section('content')
Client Info
{{ FormField::value('client_name', $order) }}
{{ FormField::value('client_address', $order) }}
{{ FormField::value('client_city', $order) }}
{{ FormField::value('client_state', $order) }}
{{ FormField::value('client_zip', $order) }}
{{ FormField::value('client_email', $order) }}
{{ FormField::value('client_phone', $order) }}
{{ $billTypes[FormField::value('bill_type', $order)] }}
  • Ship From

    @if($order) {{ $order->shipfrom_name }}
    {{ $order->shipfrom_address.', '.$order->shipfrom_city.', '.$order->shipfrom_state.' '.$order->shipfrom_zip }}
    {{ $order->shipfrom_contact }}
    {{ $order->shipfrom_phone }}
    {{ $order->shipfrom_email }}
    {{ $order->shipfrom_shipping_from_hours }} - {{ $order->shipfrom_shipping_to_hours }}
    {{ ($order->shipfrom_apt_required ? 'Yes' : 'No') }}
    {{ $order->shipfrom_notes }} @endif

  • @if($order) @if(count($orderStops)) @var $stopCount = 1 @foreach($orderStops as $orderStop)
  • Stop #{{$stopCount}}

    {{ $orderStop->name }}
    {{ $orderStop->address.', '.$orderStop->city.', '.$orderStop->state.' '.$orderStop->zip }}

  • @var $stopCount = $stopCount+1 @endforeach @endif @endif
  • Ship To

    @if($order) {{ $order->shipto_name }}
    {{ $order->shipto_address.', '.$order->shipto_city.', '.$order->shipto_state.' '.$order->shipto_zip }}
    {{ $order->shipto_contact }}
    {{ $order->shipto_phone }}
    {{ $order->shipto_email }}
    {{ $order->shipto_receiving_from_hours }} - {{ $order->shipto_receiving_to_hours }}
    {{ ($order->shipto_apt_required ? 'Yes' : 'No') }}
    {{ $order->shipto_notes }} @endif

Order Details
@foreach($equipments as $equipment) @if($order) @if($order->equipment_id == $equipment->id) {{ $equipment->name }} @endif @endif @endforeach
equipment_type != 'TL') style="display:none;" @endif @else style="display:none;" @endif >
@if(count($orderItems) && ($order->equipment_type == 'TL')){{ $orderItems[0]->description }}@endif
@if(count($orderItems) && ($order->equipment_type == 'TL')){{ $orderItems[0]->weight }}@endif
50
equipment_type == 'TL') style="display:none;" @endif @else style="display:none;" @endif >
@if($order) @if(count($orderItems)) @var $itemCount = 0 @foreach($orderItems as $orderItem) @if($itemCount != 0) @endif @var $itemCount = $itemCount+1 @endforeach @endif @endif
Description Class Unit Length Width Height Weight
@if(count($orderItems) && ($order->equipment_type != 'TL')){{ $orderItems[0]->description }} @endif @if(count($orderItems) && ($order->equipment_type != 'TL')){{ $orderItems[0]->class }} @endif @if(count($orderItems) && ($order->equipment_type != 'TL')){{ $orderItems[0]->unit }} @endif @if(count($orderItems) && ($order->equipment_type != 'TL')){{ $orderItems[0]->length }} @endif @if(count($orderItems) && ($order->equipment_type != 'TL')){{ $orderItems[0]->width }} @endif @if(count($orderItems) && ($order->equipment_type != 'TL')){{ $orderItems[0]->height }} @endif @if(count($orderItems) && ($order->equipment_type != 'TL')){{ $orderItems[0]->weight }} @endif
{{ $orderItems[$itemCount]->description }} {{ $orderItems[$itemCount]->class }} {{ $orderItems[$itemCount]->unit }} {{ $orderItems[$itemCount]->length }} {{ $orderItems[$itemCount]->width }} {{ $orderItems[$itemCount]->height }} {{ $orderItems[$itemCount]->weight }}
{{ FormField::value('requirements', $order) }}
{{ FormField::value('notes', $order) }}
Order Requirement Details
{{ FormField::date('requested_pickup_date', $order) }}
{{ FormField::value('requested_pickup_time', $order) }}
{{ FormField::date('requested_delivery_date', $order) }}
{{ FormField::value('requested_delivery_time', $order) }}
Order Cost Details
{{ FormField::value('line_haul_charge', $order) }}
{{ FormField::value('fuel_charge', $order) }}
@if($order) @if(count($orderAccessorials)) @var $accessorialCount = 0 @foreach($orderAccessorials as $orderAccessorial) @var $accessorialCount = $accessorialCount+1 @endforeach @endif @endif
Accessorial Rate
{{ $orderAccessorials[$accessorialCount]->description }} {{ $orderAccessorials[$accessorialCount]->total_rate }}
{{ FormField::value('accessorial_charge', $order) }}
{{ FormField::value('carrier_spent_charge', $order) }}
{{ FormField::value('total_charge', $order) }}
Assign Carrier
{{ FormField::value('carrier_name', $order) }}
{{ FormField::value('email', $carrier) }}
{{ FormField::value('carrier_line_haul_charge', $order) }}
{{ FormField::value('carrier_fuel_charge', $order) }}
@if($order) @if(count($carrierAccessorials)) @var $accessorialCount = 0 @foreach($carrierAccessorials as $carrierAccessorial) @var $accessorialCount = $accessorialCount+1 @endforeach @endif @endif
Accessorial Rate
{{ $carrierAccessorials[$accessorialCount]->description }} {{ $carrierAccessorials[$accessorialCount]->total_rate }}
{{ FormField::value('carrier_accessorial_charge', $order) }}
{{ FormField::value('carrier_total_charge', $order) }}
{{ FormField::value('carrier_driver_cell', $order) }}
Reference Number
{{ FormField::value('id', $order) }}
{{ FormField::value('load_number', $order) }}
{{ FormField::value('bol_number', $order) }}
@if($order) @foreach($referenceNumbers as $referenceNumber) @if(array_key_exists($referenceNumber['refCode'],$referenceCodes))
{{ $referenceNumber['refValue'] }}
@endif @endforeach @endif
@endsection @section('scripts') @endsection