@extends('hr_main') @section('title', '| Bank Slip Report') @section('content') @php $project = isset($data['filter']['project']) ? $data['filter']['project'] : ''; $projectType = isset($data['filter']['project_type']) ? $data['filter']['project_type'] : ''; $branch = isset($data['filter']['branch']) ? $data['filter']['branch'] : ''; $bankingType = isset($data['filter']['banking_type']) ? $data['filter']['banking_type'] : ''; $salaryType = isset($data['filter']['salary_type']) ? $data['filter']['salary_type'] : ''; // dd($projectType, $branch); @endphp

Bank Slip Report

{{-- --}}
{{-- --}}
{!! Form::open([ 'role' => 'form', 'class' => 'form-horizontal form-groups filter-form', 'method' => 'get', 'autocomplete' => 'off', ]) !!}
{!! Form::select( 'filter[project]', $data['easycode']::getProject(), isset($data['filter']['project']) ? $data['filter']['project'] : '', ['class' => 'form-control getProjectType', 'id' => 'filter_project'] ) !!}
{!! Form::select('filter[project_type]', ['' => '--- Project Type ---'], $projectType, [ 'class' => 'form-control getBranch', 'id' => 'filter_project_type' ]) !!}
{!! Form::select('filter[branch]', ['' => '--- Branch ---'], $branch, [ 'class' => 'form-control getUser hr-select2', 'id' => 'filter_branch' ]) !!}
{!! Form::select('filter[banking_type]', ['' => 'Banking Type', 'bank' => 'Bank', 'mfs' => 'MFS'], $bankingType, [ 'class' => 'form-control getUser', 'id' => 'filter_branch' ]) !!}
{!! Form::select('filter[salary_type]', ['salary' => 'Monthly Salary', 'bonus' => 'Bonus'], $salaryType, [ 'class' => 'form-control', 'id' => 'filter_salary_type' ]) !!}
{{--
{!! Form::select('filter[user]', [''=>'Select any'], (isset($data['filter']['user']))?$data['filter']['user']:'', ['class' => 'form-control', 'id' => 'filter_user']) !!}
--}}
{!! Form::text( 'filter[target_month]', isset($data['filter']['target_month']) ? $data['filter']['target_month'] : '', ['class' => 'form-control monthpicker', 'id' => 'filter_target_month', 'placeholder' => 'Target Month', 'required'] ) !!}
{!! Form::close() !!}
 
{{ $data['reportName_label'] }}
{{ $data['reportName_address'] }}
{{ $data['reportName'] }}
{{ @$data['project_label'] }} {{ @$data['project_type_label'] }}
{{ @$data['branch_label'] }} {{ @$data['target_month'] }}
{{--

{{ @$data['project_label'] }}

{{ @$data['project_type_label'] }}

{{ @$data['branch_label'] }}

{{ @$data['target_month'] }}

--}}
@include('hr.report.bankSlip.table', [$data])
@endsection @section('footerAssets')