@extends('hr_main') @section('title', '| '.$data['pageTitle']) @section('content')
| {!! Form::label('company_id_fk', $data['attributes']['company_id_fk'], ['class' => '']) !!} | {!! Form::label('project_id_fk', $data['attributes']['project_id_fk'], ['class' => '']) !!} | {!! Form::label('branchId', $data['attributes']['branchId'], ['class' => '']) !!} | Position | Project Type | {!! Form::label('target_month', $data['salaryGenerateModel']::attributes()['target_month'], ['class' => '']) !!} | |
|---|---|---|---|---|---|---|
| {!! Form::select('company_id_fk', $data['companyData'], (isset($_POST['company_id_fk']))?$_POST['company_id_fk']:'', ['class' => 'form-control getProject', 'id' => 'company_id_fk', 'required'=>'required']) !!} | {!! Form::select('project_id_fk', array(''=>'Select any'), (isset($_POST['project_id_fk']))?$_POST['project_id_fk']:'', ['class' => 'form-control getBranch', 'id' => 'project_id_fk', 'required'=>'required']) !!} | {!! Form::select('branchId', array(''=>'Select any'), (isset($_POST['branchId']))?$_POST['branchId']:'', ['class' => 'form-control hr-select2', 'id' => 'branchId', 'required'=>'required']) !!} | {!! Form::text('target_month', (isset($_POST['target_month']))?$_POST['target_month']:date('m-Y'), ['class' => 'form-control monthpicker', 'required'=>'required' ]) !!} | {!! Form::submit('Search', ['id' => 'add', 'class' => 'btn btn-info', 'name'=>'submit']); !!} |