@extends('layouts.app')
@push('datatable-styles')
@include('sections.datatable_css')
@endpush
@push('styles')
@endpush
@section('filter-section')
@lang('Technicians')
{{--
@lang('app.category')
--}}
{{--
@lang('app.employee')
--}}
{{--
@lang('app.project')
--}}
@lang('app.clearFilters')
@endsection
@section('content')
@foreach ($serviceWatchCount as $item)
{{ $item->service_name }} |
{{ $item->tot }} |
@endforeach
@foreach ($brandsWatchCount as $item)
@if ($item->tot > 0)
{{ $item->name }} |
{{ $item->tot }} |
View |
@endif
@endforeach
@foreach ($clientWatchCount as $item)
{{ $item->name }} |
{{ $item->tot }} |
@endforeach
@foreach ($techWatchCount as $item)
{{ $item->name }} |
{{ $item->tot }} |
@endforeach
@foreach ($activeUsers as $key => $item)
{{ $item->name }} |
@foreach ($item->techJobs as $item2)
{{ $item2->item_name }} |
{{ $item2->tot_items }} |
@endforeach
@endforeach
{{--
@foreach ($activeTimeUsers as $key => $item)
{{ $item->name }} |
Service |
Total |
@foreach ($item->techTimeJobs as $item2)
{{ $item2->item_name }}-
( Time
{{ \Carbon\CarbonInterval::formatHuman($item2->tot_minutes ? $item2->tot_minutes : 0) }}
)
|
{{ $item2->tot_items }} |
@endforeach
@endforeach
--}}
{{--
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
--}}
@endsection
@push('scripts')
@include('sections.datatable_js')
@endpush