@extends('layouts.admin') @section('content')
{{ csrf_field() }}
{{ FormField::value('carrier_invoice_id', $order) }}
{{ FormField::value('carrier_name', $order) }}
{{ FormField::date('carrier_invoice_date', $order) }}
Shipment Notes
@if($notes) @foreach($notes as $note) @endforeach @endif
Added Date Added By Status Message
{{ $note->created_at->format('m/d/Y') }} {{ $note->username }} {{ $note->status }} {!! nl2br($note->message) !!}
  • 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 }}
    {{ $orderStop->main_contact }}
    {{ $orderStop->telephone }}
    {{ $orderStop->email }}
    {{ $orderStop->receiving_from_hours }} - {{ $orderStop->receiving_to_hours }}
    {{ ($orderStop->appointment_required ? 'Yes' : 'No') }}
    {{ $orderStop->notes }}

  • @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

Commodity 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) }}
{!! nl2br(FormField::value('notes', $order)) !!}
Expected Charge
{{ ($order->alt_carrier_total_charge ? $order->alt_carrier_line_haul_charge : ($order->carrier_line_haul_charge ? $order->carrier_line_haul_charge : '-')) }}
{{ ($order->alt_carrier_total_charge ? $order->alt_carrier_fuel_charge : ($order->carrier_fuel_charge ? $order->carrier_fuel_charge : '-')) }}
@if($order) @if(count($carrierAccessorials))
@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 }}
@endif @endif
{{ ($order->alt_carrier_total_charge ? $order->alt_carrier_accessorial_charge : ($order->carrier_accessorial_charge ? $order->carrier_accessorial_charge : '-')) }}
{{ ($order->alt_carrier_total_charge ? $order->alt_carrier_total_charge : ($order->carrier_total_charge ? $order->carrier_total_charge : '-')) }}
Original Client Billing
{{ ($order->alt_total_charge ? $order->alt_line_haul_charge : ($order->line_haul_charge ? $order->line_haul_charge : '-')) }}
{{ ($order->alt_total_charge ? $order->alt_fuel_charge : ($order->fuel_charge ? $order->fuel_charge : '-')) }}
@if($order) @if(count($orderAccessorials))
@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 }}
@endif @endif
{{ ($order->alt_total_charge ? $order->alt_accessorial_charge : ($order->accessorial_charge ? $order->accessorial_charge : '-')) }}
{{ ($order->alt_total_charge ? $order->alt_total_charge : ($order->total_charge ? $order->total_charge : '-')) }}
@endsection