@extends('hr_main') @section('title', '| Provident Fund Register Report') @section('stylesheets') @include('hr.report.reportStyle') @endsection @section('content')

{{ $data['reportLabel'] }}

Reset

{{ Form::open([ 'url' => 'hr/report/pfRegister', 'class'=>'form-horizontal form-groups filter-form', 'method'=>'GET' ]) }} {{-- Project --}}
{{ Form::label('projects','Projects',['class'=>'control-label']) }} {{ Form::select('project', $data['projects'],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','id'=>'branch']) }}
{{-- User --}}
{{ Form::label('user','User',['class'=>'control-label']) }} {{ Form::select('user', [],null,['class'=>'form-control','id'=>'user']) }}
{{-- Start Date --}}
{{ Form::text('filter[start_date]', empty($data['filter']['start_date']) ? '' : $data['filter']['start_date'], [ 'class' => 'form-control datepicker', 'id' => 'filter_end_date', 'placeholder'=>'Select Date', 'autocomplete'=>'off' ]) }}
{{-- End Date --}}
{{ Form::text('filter[end_date]', empty($data['filter']['end_date']) ? '' : $data['filter']['end_date'], [ 'class' => 'form-control datepicker', 'id' => 'filter_end_date', 'placeholder'=>'Select Date', 'autocomplete'=>'off' ]) }}
{{-- Submit Button --}}
{{ Form::close() }}
@if( $data['filtered'] )

{{ $data['foundationName'] }}

{{ $data['foundationAddress'] }}

{{ $data['reportLabel'] }}

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

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

@include('hr.report.pfRegister.table')
Prepared by
Checked by
Approved by
{{-- ./filtered-result --}} @endif
{{-- ./panel-body --}}
@endsection @section('footerAssets') @endsection