@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' => '']) !!} | {!! Form::label('target_month', $data['salaryGenerateModel']::attributes()['target_month'], ['class' => '']) !!} | {!! Form::label('genarate_date', 'Genarate Date', ['class' => '']) !!} | |
|---|---|---|---|---|---|
| {!! Form::select('company_id_fk', $data['companyData'], (isset($data['req']['company_id_fk']))?$data['req']['company_id_fk']:'', ['class' => 'form-control getProject', 'id' => 'company_id_fk', 'required'=>'required']) !!} | {!! Form::select('project_id_fk', array(''=>'Select any'), (isset($data['req']['project_id_fk']))?$data['req']['project_id_fk']:'', ['class' => 'form-control getBranch', 'id' => 'project_id_fk', 'required'=>'required']) !!} | {!! Form::select('branchId', array(''=>'Select any'), (isset($data['req']['branchId']))?$data['req']['branchId']:'', ['class' => 'form-control', 'id' => 'branchId', 'required'=>'required']) !!} | {!! Form::text('target_month', (isset($data['req']['target_month']))?date("m-Y",strtotime($data['req']['target_month'])):date('m-Y'), ['class' => 'form-control monthpicker', 'required'=>'required' ]) !!} | {!! Form::text('created_date', (isset($data['req']['created_date']))?date("d-m-Y",strtotime($data['req']['created_date'])):date('d-m-Y'), ['class' => 'form-control datepicker', 'required'=>'required' ]) !!} | {!! Form::submit('Generate', ['id' => 'add', 'class' => 'btn btn-info', 'name'=>'submit']); !!} |