@extends('layouts.app') @section('content')

Employee View

View and manage a employee in detail, you will get a clear idea on the role, department & contact details.
{{--
Actions
--}}
{{-- --}}
EMP ID: {{ $data['employee']['id'] }}
{{-- --}}

{{ $data['employee']['fname'].' '.$data['employee']['lname'] }}

@foreach ($data['roles'] as $key => $value ) @if($key == $data['employee']['role_id']) {{ $value }}, @endif @endforeach @if(!empty($data['roles']) && !empty($data['departments']))   @endif @foreach ($data['departments'] as $key => $value ) @if($key == $data['employee']['department_id']) {{ $value }} @endif @endforeach
Department
@foreach ($data['departments'] as $key => $value ) @if($key == $data['employee']['department_id']) {{ $value }} @endif @endforeach
Role
@foreach ($data['roles'] as $key => $value ) @if($key == $data['employee']['role_id']) {{ $value }} @endif @endforeach
Email
Telephone
{{ $data['employee']['phone'] }}
Status
Address
{{ $data['employee']['address'] }}
RECENT ACTIVITIES
@php ($get_permission = permission("employee", "full-permission")) @if($get_permission) Edit Details @endif Recent 0 of 0 showing
{{--
Employee Updated with Employee 'Mr Afras Muhammed' information is updated by Afras.muhammed@gmail.com
Mr Afras Muhammed one year ago
Employee Updated with Employee 'Mr Afras Muhammed' information is updated by Afras.muhammed@gmail.com
Mr Afras Muhammed one year ago
Employee Updated with Documents uploaded for 'Afras Muhammed' by Afras.muhammed@gmail.com
Mr Afras Muhammed one year ago
--}} {{-- --}}
{{-- --}}
No note added yet.
Add Task
No task added yet.
Add Appointment
Add Identification
{{--
Shaji Muhammed 25 Nov 2017 image/jpg - 399.22 KB
Shaji Muhammed 25 Nov 2017 image/jpg - 399.22 KB
Shaji Muhammed 25 Nov 2017 image/jpg - 399.22 KB
--}}
Add File
{{--
Sample file 18 Jun 2018 image/jpeg - 417.34 KB
Sample pdf 18 Jun 2018 application/pdf - 296.87 KB
Shah added 24 Jun 2018 image/jpeg - 6.91 KB
--}}
@endsection @section('admin_css') @stop @section('admin_js') @include('admin.js.employee-edit') @stop