@if($report_type=='love_statement')
@if($report->count()>0)
Invoice# |
Auth# |
Date |
Truck gallons |
Truck dolars |
Discounted PPG |
Retail total |
@foreach($report as $statement)
{{$statement->invoice_no}} |
{{$statement->authorisation_no}} |
{{$statement->date}} |
{{$statement->truck_gallons}} |
{{$statement->truck_dollars}} |
{{$statement->discounted_ppg}} |
{{$statement->retail_amount}} |
@endforeach
@else
No reports has been imported!
@endif
@elseif($report_type=='compass_report')
@if($report->count()>0)
Auth |
Broker |
Carrier |
Date |
Fuel provider |
Week Id |
@foreach($report as $statement)
{{$statement->auth_code}} |
{{$statement->broker->name}} |
{{$statement->carrier->name}} |
{{$statement->date}} |
{{$statement->fuel_provider}} |
{{$statement->week_id}} |
@endforeach
@else
No reports has been imported!
@endif
@elseif($report_type=='qb-verification-carriers')
@if($report->count()>0)
Carrier |
Country |
Date |
Value |
@foreach($report as $statement)
{{$statement->carrier->name}} |
{{$statement->currency}} |
{{$statement->date}} |
{{$statement->value}} |
@endforeach
@else
No reports has been imported!
@endif
@elseif($report_type=='road_rangers')
@if($report->count()>0)
Date |
City |
State |
Auth# |
PO |
Product |
Gallons |
Price |
Total |
@foreach($report as $statement)
{{$statement->date}} |
{{$statement->city}} |
{{$statement->state}} |
{{$statement->auth_no}} |
{{$statement->po}} |
{{$statement->product}} |
{{$statement->gallons}} |
{{$statement->price}} |
{{$statement->total}} |
@endforeach
@else
No reports has been imported!
@endif
@elseif($report_type=='love_rebates')
@if($report->count()>0)
Type |
Store |
Gallons purchased |
Unit |
Amount |
Date |
@foreach($report as $statement)
{{$statement->type}} |
{{$statement->store}} |
{{$statement->gallons_purchased}} |
{{$statement->unit}} |
{{$statement->amount}} |
{{$statement->date}} |
@endforeach
@else
No reports has been imported!
@endif
@endif