@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('branch_id_fk', $data['attributes']['branch_id_fk'], ['class' => '']) !!} | {!! Form::label('fiscal_id_fk', $data['attributes']['fiscal_id_fk'], ['class' => '']) !!} | {!! Form::label('month', $data['attributes']['month'], ['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('branch_id_fk', array(''=>'Select any'), (isset($data['req']['branch_id_fk']))?$data['req']['branch_id_fk']:'', ['class' => 'form-control', 'id' => 'branch_id_fk', 'required'=>'required']) !!} | {!! Form::select('fiscal_id_fk', $data['fiscalData'], (isset($data['req']['fiscal_id_fk']))?$data['req']['fiscal_id_fk']:'', ['class' => 'form-control', 'id' => 'fiscal_id_fk', 'required'=>'required']) !!} | {!! Form::text('month', (isset($data['req']['month']))?$data['req']['month']:date('m-Y'), ['class' => 'form-control monthpicker', 'required'=>'required' ]) !!} | {!! Form::submit('Search', ['id' => 'add', 'class' => 'btn btn-info', 'name'=>'submit']); !!} |