@extends('layouts.main')
@section('content')
@include('partials.breadcrumb', ['breadcrumbTitle' => 'Inventory Dashboard'])
@include('dashboard.submenu')
System Assets
@foreach($assetStatuses as $statusKey => $statusData)
@endforeach
Asset Inventory
@foreach($computersWidgetData as $statusName => $computersWidgetData)
{{$statusName}} ({{array_sum($computersWidgetData)}})
@endforeach
Assets Brand New, Used by Region
| Region |
Asset Total ({{$count['used_new_asset']}}) |
@if(!empty($regionCount))
@foreach($regionCount as $region)
| {{$region['name']}} |
@if($region['count'] > 0)
{{$region['count']}}
@else {{$region['count']}}
@endif
|
@endforeach
@endif
Total System Assets by Type
| Asset Type |
Asset Total ({{$count['total_assets']}}) |
@foreach($assetTypes as $assetType)
| {{$assetType->name}} |
{{$assetType->assets_count}} |
@endforeach
Asset Health
@stop
@section('help-links')
@include('help.help-links',['helpLink'=>config('help-links.help_links.inventory_dashboard'),'helpTitle'=>config('help-links.help_titles.inventory_dashboard')])
@endsection
@section('after_scripts')
@stop