@extends('hr_main') @section('title', '| Eps Register Report') @section('content')

{{ $data['reportLabel'] }}

Reset
{{ csrf_field() }} {{-- Project --}}
{{ Form::label('projects','Projects',['class'=>'control-label']) }} {{ Form::select('project', $data['projects'], $data['filter']['project'] ?? null ,['class'=>'form-control','id'=>'project']) }}
{{-- Project Type --}}
{{ Form::label('project_type','Project Type',['class'=>'control-label']) }} {{ Form::select('project_type', [],null,['class'=>'form-control','id'=>'project_type']) }}
{{-- Branch --}}
{{ Form::label('branch','Branch',['class'=>'control-label']) }} {{ Form::select('branch', [],null,['class'=>'form-control hr-select2','id'=>'branch']) }}
{{-- User --}}
{{ Form::label('user','User',['class'=>'control-label']) }} {{ Form::select('user', [],null,['class'=>'form-control','id'=>'user']) }}
{{-- Start Date --}}
{{ Form::label('start_date','Start Date',['class'=>'control-label']) }} {{ Form::text('start_date',empty($data['filter']['start_date']) ? '':$data['filter']['start_date'], ['class'=>'form-control datepicker','id'=>'start_date', 'readonly'=> true, 'style'=> 'cursor: pointer;']) }}
{{-- End Date --}}
{{ Form::label('end_date','End Date',['class'=>'control-label']) }} {{ Form::text('end_date',empty($data['filter']['end_date']) ? '':$data['filter']['end_date'], ['class'=>'form-control datepicker','id'=>'end_date','readonly'=> true, 'style'=> 'cursor: pointer;']) }}
{{-- Submit Button --}}
{{-- ./row --}}
@if( $data['filtered'] )

{{ $data['foundationName'] }}

{{ $data['foundationAddress'] }}
{{ $data['reportLabel'] }}
Project: {{ $data['selectedProject'] }}

Branch: {{ $data['selectedBranch'] }} Month: {{ date('M Y',strtotime($data['startDate'])) }} to {{ date('M Y',strtotime($data['endDate'])) }}

Project Type: {{ $data['selectedProjectType'] }} Print Date: {{ date('d-m-Y H:i A') }}

@include('hr.report.epsRegister.table')
@endif
{{-- ./panel-body --}}
@endsection @section('footerAssets') @endsection