@extends('adminlte::page') @section('content')

Unlinked pilot statements

Export
@foreach($pilot_statements as $pilot) @endforeach
Auth# Invoice# Ticket # Date Location Country Volume Retail total
{{$pilot->auth_no}} {{$pilot->invoice_no}} {{$pilot->ticket_no}} {{$pilot->billing_date}} {{$pilot->location}} {{$pilot->country}} {{$pilot->fuel_units}} {{$pilot->retail_total}}

Transactions in CPS but not in Pilot Statements {{$cps_not_linked->count()}}

@foreach($cps_not_linked as $cps) @endforeach
Auth# Invoice# Date Merchant Country Total
{{$cps->auth_code}} {{$cps->invoice}} {{$cps->date}} {{$cps->merchant}} {{$cps->us_can}} {{$cps->total}}

Transactions are in CPS, but the Total does not equal to the FP-RT ({{count($cps_linked_duplicates)}})

@foreach($cps_linked_duplicates as $cps) @endforeach
Auth# Invoice# Date Merchant Country Volume Total FP-RT Difference
{{$cps->auth_code}} {{$cps->invoice}} {{$cps->date}} {{$cps->merchant}} {{$cps->us_can}} {{$cps->volume}} {{$cps->total}} {{$cps->pilotStatement->sum('retail_total')}} {{$cps->total-$cps->pilotStatement->sum('retail_total')}}
@stop @section('css') @stop @section('js') @stop