@extends('layouts/acc_layout') @section('title', '| Vehicle Auto Voucher Configuration') @section('content') @include('successMsg')
Add Vehicle Auto Voucher 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('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'])!!}
{!! Form::label('localNarration', 'Local Narration:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('localNarration', $value = null, ['class' => 'form-control', 'id' => 'localNarration', 'type' => 'text', 'placeholder' => 'Enter Local Narration', 'autocomplete'=>'off']) !!}
{!! Form::label('globalNarration', 'Global Narration:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('globalNarration', $value = null, ['class' => 'form-control', 'id' => 'globalNarration', 'type' => 'text', 'placeholder' => 'Enter Global Narration', 'autocomplete'=>'off']) !!}
{!! Form::label('creditLedgerCode', 'Credit Ledger Code:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('creditLedgerCode', $value = null, ['class' => 'form-control', 'id' => 'creditLedgerCode', 'type' => 'text', 'placeholder' => 'Enter Local Narration', 'autocomplete'=>'off']) !!}

Debit Ledger Code:

{!! Form::label('fuelDebitLedgerCode', 'Fuel & Oil:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('fuelDebitLedgerCode', $value = null, ['class' => 'form-control', 'id' => 'fuelDebitLedgerCode', 'type' => 'text', 'placeholder' => 'Enter Fuel & Oil Debit Ledger Code', 'autocomplete'=>'off']) !!}
{!! Form::label('maintenanceDebitLedgerCode', 'Repairs & Maintenance:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('maintenanceDebitLedgerCode', $value = null, ['class' => 'form-control', 'id' => 'maintenanceDebitLedgerCode', 'type' => 'text', 'placeholder' => 'Enter Repairs & Maintenance Debit Ledger Code', 'autocomplete'=>'off']) !!}

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