dbfdg
{{Form::model($attendanceEmployee,array('route' => array('attendanceemployee.update', $attendanceEmployee->id), 'method' => 'PUT')) }}
{{Form::label('employee_id',__('Employee'), ['class' => 'form-label'])}}
{{Form::select('employee_id',$employees,null,array('class'=>'form-control select'))}}
{{Form::label('date',__('Date'), ['class' => 'form-label'])}}
{{Form::date('date',null,array('class'=>'form-control'))}}
{{Form::label('clock_in',__('Clock In'), ['class' => 'form-label'])}}
{{Form::time('clock_in',null,array('class'=>'form-control '))}}
{{Form::label('clock_out',__('Clock Out'), ['class' => 'form-label'])}}
{{Form::time('clock_out',null,array('class'=>'form-control '))}}
{{ Form::close() }}