Load #:
{{ $load->load_number }}
Customer Load #:
{{ $load->customer_load_id }}
Pickup date:
{{ date('j M Y', strtotime($load->pickup_date)) }}
Delivery date:
{{ date('j M Y', strtotime($load->delivery_date)) }}
Weight(pounds):
{{ $load->weight }} pounds
Length(ft):
{{ $load->length }} ft.
Distance:
{{ $load->distance }} miles
Price:
${{ $load->price }} (${{ $load->rate }}/mile)
Trip:
{{ $load->pickup_city }}, {{ $load->pickup_state }} -> {{ $load->delivery_city }}, {{ $load->delivery_state }}
Status:
{{ $load->status }}
@if($usr->role!='owner' && $usr->role!='driver' && $load->active)
edit
@endif
@if($usr->role=='driver' && ($load->status=='pickup' || $load->status=='booked'))
edit
@endif
Payment info:
{{ $load->payment_info }}
@if($load->is_claimed)
Claim status:
Claim
@endif
@if($load->is_paid == 0)
Payment status:
Not paid
@endif