@extends('layouts/acc_layout') @section('title', '| Vehicle Allowance Configuration') @section('content') @include('successMsg')
Add Vehicle Allowance Configuration
{!! Form::open(['role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'form']) !!}
{!! Form::label('companyId', 'Company:', ['class' => 'col-sm-4 control-label']) !!}
@php $companyIds = DB::table('gnr_company')->select('id','name')->get(); @endphp
{!! Form::label('projectId', 'Project:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::label('projectTypeId', 'Project Type:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::label('designationId', 'Designation:', ['class' => 'col-sm-4 control-label']) !!}
@php $designations = DB::table('hr_settings_position')->select('id','name')->where('status', 1)->get()->sortBy('name'); @endphp
{!! Form::label('effectiveDate', 'Effective Date:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('effectiveDate', null, ['class' => 'form-control', 'style'=>'cursor:pointer', 'placeholder' => 'dd-mm-yyyy', 'id' => 'effectiveDate'])!!}

Monthly Allowances:

{!! Form::label('allowanceMethod', 'Allowance Method:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('allowanceMethod', ['' => 'Select Allowance Method', 'MeterReadingWise' => 'Meter Reading Wise', 'Fixed' => 'Fixed'], null, ['class' => 'form-control', 'id' => 'allowanceMethod']) !!}
{!! Form::label('mobilCost', 'Mobil Cost:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('mobilCost', $value = null, ['class' => 'form-control', 'id' => 'mobilCost', 'type' => 'text', 'placeholder' => 'Enter Mobil Cost (TK)', 'autocomplete'=>'off']) !!}
{!! Form::label('servicingCost', 'Service Cost:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('servicingCost', $value = null, ['class' => 'form-control', 'id' => 'servicingCost', 'type' => 'text', 'placeholder' => 'Enter Servicing Cost (TK)', 'autocomplete'=>'off']) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-5 control-label']) !!}
{!! Form::submit('Save', ['id' => 'specialMemberCashInHandAdjustmentConfigurationSubmit', 'class' => 'btn btn-success']) !!} Close
{!! Form::close() !!}
@endsection