@extends('layouts.default') @section('title','Assign Consultant Payrates') @section('new_button') Pay rate list @endsection @section('content') {!! Form::open(['method' => 'POST', 'route' => 'consultnatpayrates.store', 'class' => 'form-horizontal', 'autocomplete'=>'off']) !!}
Select Consultant {!! Form::select('employee_id', [''=>'Select Consultant']+$consultants, null, ['class'=>'selectpicker', 'required', 'data-live-search'=>'true', 'id'=>'employee_id1', 'autocomplete'=>'false', 'onchange'=>'getConsultantPayrates()']) !!}
Consultant Payrate Type {!! Form::select('con_pay_type', ['0'=>'Hourly', '1'=>'Monthly'], 0, ['class'=>'selectpicker', 'required', 'data-live-search'=>'true', 'id'=>'consultantPayrateType', 'autocomplete'=>'false', 'onchange'=>'payrateTypeChanged()']) !!}
{{-- VENDOR NAME --}}
{!! Form::textGroup('vendor_name[]', 'Vendor Company Name', null, ['required', 'id'=>'vendor_name1', 'onkeydown'=>'vendorList(1)']) !!} {!! Form::hidden('vendor_id[]', null, ['id'=>'vendor_id1']) !!}
{{-- VENDOR REG PAYRATES --}}
{!! Form::numberGroup('vendor_payrate_reg[]', 'Vendor Payrate - Reg', null, ['required', 'id'=>'vendor_payrate_reg1']) !!}
{{-- VENDOR OT PAYRATE --}}
{!! Form::numberGroup('vendor_payrate_ot[]', 'Vendor Payrate - OT', null, ['required', 'id'=>'vendor_payrate_ot1']) !!}
{{-- FROM HOURS --}}
{{-- TO HOURS --}}
{{-- FROM MONTH --}} {{-- TO MONTH --}} {{-- PAYRATE TYPE --}}
Type {!! Form::select('rate_type[]', ['fixed'=>'Fixed', 'percentage'=>'Percentage'], 'fixed', ['class'=>'selectpicker', 'required', 'id'=>'rate_type1', 'onchange'=>'changeIcon(1)']) !!}
{{-- IF FIXED- Consultant Reg Payrates --}}
monetization_on
{{-- IF FIXED- Consultant OT Payrates --}}
monetization_on
{{-- IF PERCENT REG --}} {{-- CONSULTANT PERCENTAGE REG --}} {{-- CONSULTANT PAYRATE REG --}} {{-- EMPLOYER PERCENTAGE REG --}} {{-- EMPLOYER PAYRATE REG --}} {{-- IF PERCENT OT --}} {{-- CONSULTANT PERCENTAGE OT --}} {{-- CONSULTANT PAYRATE OT --}} {{-- EMPLOYER PERCENTAGE OT --}} {{-- EMPLOYER PAYRATE OT --}}
{!! Form::close() !!}

Previous Payrates List

Please Select Consultant
@include('includes.datepicker')