@extends('adminlte::page') @section('title', 'Dashboard') @section('content_header') @stop @section('content')
Carrier | Status | Date | Date sent | Preview email | Download report | Actions | @foreach ($logs as $log)|
---|---|---|---|---|---|---|---|
{{ $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 |
Carrier | Date | Total Fuel - Transactions | Total Fuel - Units | Fuel Difference | Total Def - Transactions | Total Def - Units | Def Difference | @foreach ($logs as $log)
---|---|---|---|---|---|---|---|
{{ $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) }} |