@extends('driver._layout') @if(session('message')) @endif @section('body')
Money
Gross:
B
Fuel:
B
Company cash:
B
Income:
B
Claims
@if($claims->isEmpty())

You have not any claims

@else @foreach($claims as $claim) {{ $claim->pickup_city }}, {{ $claim->pickup_state }} @endforeach @endif
Last loads
@if($loads->isEmpty()) @else @foreach($loads as $load) @if($load->status == 'canceled')@elseif($load->status == 'recovery')@else@endif @endforeach @endif
Date Trip Rate Price Status
You have not any load
{{ date('j M Y', strtotime($load->pickup_date)) }} {{ $load->pickup_city }}, {{ $load->pickup_state }} -> {{ $load->delivery_city }}, {{ $load->delivery_state }} ${{ $load->rate }}/mile${{ $load->price }}
${{$load->tonu}}
${{ $load->price }}
${{$load->price_recovery}}
${{ $load->price }}{{ $load->status }}
@endsection @section('script') @endsection