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

IFTA Reports Logs

Delete pending Send all
@foreach ($logs as $log) @endforeach
Carrier Status Date Date sent Email Preview email Download report Actions
{{ $log->carrier->name }} {{ $log->status }} {{ $log->created_at->format('m/d/Y') }} @if ($log->date_sent != null) {{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $log->date_sent)->format('m/d/Y H:i') }} @else - @endif {{ $log->to }} View Download report @if($log->status != 'sent') Send @else Sent @endif   Delete
{{ $logs->links() }}
@foreach ($logs as $log) @endforeach
Carrier Date Total Fuel - Transactions Total Fuel - Units Fuel Difference Total Def - Transactions Total Def - Units Def Difference
{{ $log->carrier->name }} {{ $log->created_at->format('m/d/Y') }} {{ number_format($log['verification']['total_fuel_transactions'],2) }} {{ number_format($log['verification']['total_fuel_units'],2) }} {{ number_format($log['verification']['total_fuel_transactions'] - $log['verification']['total_fuel_units'],2) }} {{ number_format($log['verification']['total_def_transactions'],2) }} {{ number_format($log['verification']['total_def_units'],2) }} {{ number_format($log['verification']['total_def_transactions'] - $log['verification']['total_def_units'],2) }}
@endsection @section('css') @stop @section('js') @stop