@extends('layouts.main') @section('content') @include('reports.cycle-count.partials.cycle-count-submenu') @include('partials.breadcrumb', ['breadcrumbTitle' => 'Cycle Count', 'parentUrl' => '#', 'parentTitle' => 'Inventory Control'])
{{-- --}} @if (Storage::disk('public')->exists($reportCsvFile)) Download Report @endif
Date {{$createdDate}}
Scanned by {{$userName}}
Total # of Assets {{$count}}
Total # of Assets Matched {{$assetsMatched}}
Total # of Process Errors {{$positiveVariance}}
Total # of Unknown Shrinkage {{$datasNotScanned->count()}}
% of Accuracy {{$accuracy}}%
% of Variance {{$variance}}%
@foreach($datas as $data) @endforeach @foreach($dataNotInDatabase as $data) @endforeach @forelse($datasNotScanned as $data) @empty @endforelse
# Scanned Asset Tag # Serial # Asset Type Hardware Standard Tech Spec Asset Status Asset Location Match at Location (Y/N) Discrepancy Error
{{$loop->index+1}} {{$data['asset_tag']}} {{$data['serial_no']}} {{$data['asset_type']}} {{$data['hardware_standard']}} {{$data['technical_spec']}} {{$data['status']}} {{$data['location']}} {{$data['location_match']}} {{$data['discrepancy']}} {{$data['error']}}
{{count($datas) + $loop->index + 1}} {{$data['asset_tag']}} {{$data['serial_no']}} {{$data['asset_type']??''}} {{$data['hardware_standard']}} {{$data['technical_spec']}} {{$data['status']}} {{$data['location']}} {{$data['location_match']}} {{$data['discrepancy']}} {{$data['error']??''}}
{{count($datas) + count($dataNotInDatabase) + $loop->index + 1}} {{$data['asset_tag']}} {{$data['serial_no']}} {{$data['asset_type']??''}} {{$data['hardware_standard']}} {{$data['technical_spec']}} {{$data['status']}} {{$data['location']}} {{$data['location_match']}} {{$data['discrepancy']}} {{$data['error']??''}}
Total # of Assets {{$count}}
Total # of Assets Matched {{$assetsMatched}}
Total # of Process Errors {{$positiveVariance}}
Total # of Unknown Shrinkage {{$datasNotScanned->count()}}
% of Accuracy {{$accuracy}}%
% of Variance {{$variance}}%
@endsection @section('help-links') @include('help.help-links',['helpLink'=>config('help-links.help_links.cycle_count'),'helpTitle'=>config('help-links.help_titles.cycle_count')]) @endsection @section('after_scripts') @include('assets.partials.scripts.common') @endsection