@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")
{{__("reports")}}
{{__("performance-reports")}}
{{__("Dashboard")}}
{{__("reports")}}
@endsection @section("content")
{{__('performance-reports')}}
@csrf
{{__("select-the-print-type")}}
{{__("worker-performance")}}
{{__("Start Date")}}
{{__("End Date")}}
{{__("select-order")}}
{{__('select-order')}}
{{__('All')}}
@foreach ($users as $user)
{{$user->full_name}}
@endforeach
@if ($errors->has('startDate') || $errors->has('endDate') || $errors->has('date_selection') || $errors->has('print') || $errors->has('user_id') || $errors->has('all_fields'))
@if ($errors->has('startDate'))
{{ $errors->first('startDate') }}
@endif @if ($errors->has('endDate'))
{{ $errors->first('endDate') }}
@endif @if ($errors->has('date_selection'))
{{ $errors->first('date_selection') }}
@endif @if ($errors->has('print'))
{{ $errors->first('print') }}
@endif @if ($errors->has('user_id'))
{{ $errors->first('user_id') }}
@endif @if ($errors->has('all_fields'))
{{ $errors->first('all_fields') }}
@endif
@endif
{{ __("print") }}
@endsection @section("scripts") @endsection