@extends('hr_main') @section('title', "| $pageTitle") @section('stylesheets') @endsection @section('content')
{{ $pageTitle }}
{{ csrf_field() }}
{{-- Company --}}
{{ Form::label('company_id_fk', $attributes['company_id_fk'], ['class' => 'control-label']) }} {{ Form::select('company_id_fk', $companyData, null, ['class' => 'form-control getProject', 'id' => 'company']) }}

{{ $errors->first('company_id_fk') }}

{{-- Project --}}
{{ Form::label('project_id_fk', $attributes['project_id_fk'], ['class' => 'control-label']) }} {{ Form::select('project_id_fk', [], null, ['class' => 'form-control select2', 'id' => 'project']) }}

{{ $errors->first('project_id_fk') }}

{{-- Project Type --}}
{{ Form::label('project_type_id_fk', $attributes['project_type_id_fk'], ['class' => 'control-label']) }} {{ Form::select('project_type_id_fk', [], null, ['class' => 'form-control select2', 'id' => 'project-type']) }}

{{ $errors->first('project_type_id_fk') }}

{{-- Branch --}}
{{ Form::label('branch_id_fk', $attributes['branch_id_fk'], ['class' => 'control-label']) }} {{ Form::select('branch_id_fk', [], null, ['class' => 'form-control select2', 'id' => 'branch']) }}

{{ $errors->first('branch_id_fk') }}

{{ Form::label('Status', [],['class'=>'control-label']) }} {{ Form::select('status', [''=>'All', 'active'=>'Active', 'inactive'=>'Inactive'], null, ['class'=>'form-control','id'=>'status']) }}

{{ $errors->first('status') }}

{{-- Search Method --}}
{!! Form::label('', 'Search By:', ['class' => 'control-label pull-left']) !!} {!! Form::select('searchMethod', ['' => 'Please Select', '1' => 'Fiscal Year', '2' => 'Current Year', '3' => 'Date Range'], $data['searchMethodSelected'], ['id' => 'searchMethod', 'class' => 'form-control']) !!}

{{ $errors->first('searchMethod') }}

{{-- Submit Button --}}
@if ($isFilterFormSubmitted)

{{ $data['company']->name }}

{{ $data['company']->address }}
Branch: {{ $data['branchName'] }}

{{ $title }}

@include('hr.report.actingResponsibilityReportWithGrouping._table')
@endif
@endsection @section('footerAssets') @include('hr.report.common.printAndExcelExport') @endsection