@extends("layouts.master", ["title" => "Отчеты"]) @section("content")
Отчёт посещения сотрудников в указанном диапазоне для выбранных подразделений
@can('create-come-out') @endcan

@php $i = (($comeOuts->currentpage() - 1) * $comeOuts->perpage() + 1); @endphp @forelse ($comeOuts as $comeOut) @empty @endforelse
# Ф.И.О Организация Здание Подразделения Должность Время Вход / Выход ДЕЙСТВИЯ
{{ $i++ }} {{ $comeOut->employees->short_full_name ?? '' }} {{ $comeOut->employees->companies->name ?? ''}} {{ $comeOut->employees->branches->name ?? ''}} {{ $comeOut->employees->departments->name ?? ''}} {{ $comeOut->employees->positions->name ?? ''}} {{ $comeOut->action_time }} {{ ($comeOut->doorDevice->is_come == 1 ? 'Вход' : 'Выход') ?? '' }} @can('edit-come-out') @endcan @can('delete-come-out') @endcan
Ничего не найдено.
{{ $comeOuts->appends(request()->toArray())->links('pagination::bootstrap-4') }}
@csrf
@endsection @push("js") @endpush