@extends('adminlte::page') @section('title', 'Dashboard') @section('content')

{{$report->count()}} imported records | {{$report_type}}

Import History

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