@extends('layouts.default') @section('header-links') @include('accounts.reports.management.selector') @endsection @section('title', isset($title)?$title:'') @section('content')
{!! Form::open(['method' => 'POST', 'url' => '/reports/management/employee-worked-hours', 'class' => 'form-horizontal', 'id'=>'hoursForm']) !!}
{{-- {!! Form::label('student_id', 'Select Consultant') !!} --}} {!! Form::select('student_id', [''=>'Select Consultant']+$students, null, ['id' => 'student_id', 'class' => 'form-control selectpicker', 'required' => 'required', 'onchange'=>'submitForm();', 'style'=>'width: 100%;','data-live-search'=>'true']) !!} {{ $errors->first('student_id') }}
{!! Form::close() !!}
@php $months = config('custom_config.months_names'); @endphp @foreach ($list as $li) @endforeach
Month Week 1 Week 2 Week 3 Week 4 Week 5 Week 6 Worked Hours OT Approved Hours Paid Hours
{{ $months[$li->month_value] }} {{ $li->week1 }} {{ $li->week2 }} {{ $li->week3 }} {{ $li->week4 }} {{ $li->week5 }} {{ $li->week6 }} {{ $li->weeks }} {{ $li->total_ot_hours }} {{ $li->weeks }} {{ $li->weeks }}
@endsection