@extends ('core.layouts.app',['page'=>'class="horizontal-layout horizontal-menu content-detached-left-sidebar app-contacts " data-open="click" data-menu="horizontal-menu" data-col="content-detached-left-sidebar"']) @section ('title', trans('labels.backend.hrms.management')) @section('page-header')

{{ trans('labels.backend.hrms.management') }} {{ trans('labels.backend.hrms.management') }}

@endsection @section('content')
{{trans('buttons.general.crud.edit')}}

{{trans('hrms.employee')}}

{{$hrm['first_name'].' '.$hrm['last_name']}}

{{trans('hrms.company')}}

{{$hrm->profile['company']}}

{{trans('hrms.phone')}}

{{$hrm->profile['contact']}}

{{trans('hrms.email')}}

{{$hrm['email']}}

{{trans('hrms.status')}}

@if($hrm['status'])@else @endif

{{trans('hrms.confirmed')}}

@if($hrm['confirmed'])@else @endif

{{trans('hrms.created_by')}}

@if(@$hrm['created_by']) {{ @$hrm->created_by_user['first_name'].' '.@$hrm->created_by_user['last_name'] }}@else @endif

{{trans('hrms.address_1')}}

{{$hrm->profile['address_1'].' '.$hrm->profile['address_2']}}

{{trans('hrms.city')}}

{{$hrm->profile['city']}}

{{trans('hrms.state')}}

{{$hrm->profile['state']}}

{{trans('hrms.country')}}

{{$hrm->profile['country']}}

{{trans('hrms.postal')}}

{{$hrm->profile['postal']}}

{{trans('hrms.tax_id')}}

{{$hrm->profile['taxid']}}

{{trans('hrms.available_permissions')}} {{$hrm->role['name']}}
@php $i=0; @endphp @foreach($permissions_all as $row)
@if(in_array_r($row['id'],@$permissions))
@else
@endif {{trans('permissions.'.$row['name'])}}
@endforeach

{{trans('hrms.salary')}}

{{numberFormat($hrm->meta['salary'])}}

{{trans('hrms.hra')}}

{{numberFormat($hrm->meta['hra'])}}%

{{trans('hrms.entry_time')}}

{{$hrm->meta['entry_time']}}

{{trans('hrms.exit_time')}}

{{$hrm->meta['exit_time']}}

{{trans('hrms.sales_commission')}}

{{numberFormat($hrm->meta['commission'])}}

# {{ trans('hrms.employees') }} {{ trans('general.date') }} {{ trans('hrms.entry_time') }} {{ trans('hrms.exit_time') }}
@endsection @section('after-scripts') {{ Html::script(mix('js/dataTable.js')) }} @endsection