@extends('layouts.main') @section('content')
| {{trans('app.id')}} | {{trans('app.settings.salary_components.name')}} | {{trans('app.settings.salary_components.contract_type')}} | {{trans('app.settings.salary_components.type')}} | {{trans('app.settings.salary_components.is_cost')}} | {!! Form::select('contract_type_id', $contractTypes, null, ['placeholder' => trans('app.settings.salary_components.contract_type')]) !!} | {!! Form::select('type', salary_component_types(), null, ['placeholder' => trans('app.settings.salary_components.type')]) !!} | {!! Form::select('is_cost', [trans('app.no'), trans('app.yes')], null, ['placeholder' => trans('app.settings.salary_components.type')]) !!} |
|---|