@extends('layouts.app') @section('breadcrumb') @stop @section('content')

{!! trans('messages.filter') !!} {!! trans('messages.monthly').' '.trans('messages.summary') !!}

{!! Form::open(['url'=>'filter', 'id'=>'attendance-overtime-filter-form', 'data-no-form-clear'=>1]) !!}
{!! Form::label('month',trans('messages.month'),[]) !!} {!! Form::select('month',$months,strtolower(Carbon::now()->format('F')),['class'=>'form-control show-tick','title' => trans('messages.select_one')]) !!}
{!! Form::label('year',trans('messages.year'),[]) !!} {!! Form::select('year',$years,Carbon::now()->year,['class'=>'form-control show-tick','title' => trans('messages.select_one')]) !!}
{!! Form::select('designation_id[]', $designations,'',['class'=>'form-control show-tick','title'=>trans('messages.select_one'),'multiple' => 'multiple','data-actions-box' => "true"])!!}
{!! Form::close() !!}

{!! trans('messages.download') !!} {!! trans('messages.monthly').' '.trans('messages.summary') !!}

{!! Form::open(['route'=>'clock.download_pdf_as_zip', 'id'=>'attendance-overtime-download-zip-form', 'data-no-form-clear'=>1, 'data-submit'=>'noAjax']) !!}
{!! Form::label('month',trans('messages.month'),[]) !!} {!! Form::select('month',$months,strtolower(Carbon::now()->format('F')),['class'=>'form-control show-tick','title' => trans('messages.select_one'),'id'=>'download_month']) !!}
{!! Form::label('year',trans('messages.year'),[]) !!} {!! Form::select('year',$years,Carbon::now()->year,['class'=>'form-control show-tick','title' => trans('messages.select_one'),'id'=>'download_year']) !!}
{!! Form::select('designation_id[]', $designations,'',['class'=>'form-control show-tick','title'=>trans('messages.select_one'),'multiple' => 'multiple','data-actions-box' => "true",'id'=>'download_designation_id'])!!}
{!! Form::close() !!}

{!! trans('messages.monthly') !!} {!! trans('messages.summary') !!}

Days Present* = Employee has done clockin and clockout for the shift
@include('global.datatable',['table' => $table_data['attendance-overtime-table']])
@stop