Import Stats @isset($stations) {{ $stations->implode(', ') }} @endisset

@if (count($created) > 0)

New Accounts

@endif @if (count($updated) > 0)

Updated Accounts

@endif @if (count($terminated) > 0)

Terminated Accounts

@foreach($terminated as $item) @endforeach
Employee Number Station Job Termination
{{ $item->name }} {{ substr($item->number, -4) }} {{ $item->station->abbr }} {{ $item->job }} {{ $item->term_date }}
@endif @if (!empty($invalid) && count($invalid) > 0)

Invalid Accounts

Following users did not have a unique employee number. A bogus one has been created.

@foreach($invalid as $item) @endforeach
Employee Number Station
{{ $item->name }} {{ $item->number }} {{ $item->station->abbr }}
@endif @if (!empty($overtime) && count($overtime) > 0)

Overtime

@foreach($overtime as $item) @endforeach
Employee Number Station Job Pay Ident. Pay Code Hours TTL/Labor $
{{ $item->employee_name }} {{ $item->employee_number }} {{ $item->station }} {{ $item->job }} {{ $item->payident }} {{ $item->pay_code_express }} {{ $item->hours }} {{ $item->pay }}
@endif @if (!empty($mia) && count($mia) > 0)

MIA

@foreach($mia as $item) @endforeach
Employee Number Station Last Worked
{{ $item['name'] }} {{ $item['number'] }} {{ $item['abbr'] }} {{ $item['lastworked'] }}
@endif