@extends('layout')
@section('pageCss')
@endsection
@section('pageScripts')
@endsection
@section('title')
{{$user->name}}
@endsection
@section('content')
- Name: {{ $user->name }}
- Employee ID: {{ $user->employee_id }}
- Company Email: {{ $user->company_email }}
- Company Contact Number: {{ $user->company_phone }}
- Company P.O. Box: {{ $user->company_po_box }}
- Gender: {{ $user->gender }}
- Email: {{ $user->email }}
- Religion: {{ $user->religion }}
- Current Address: {{ $user->current_address }}
- Home Country Address: {{ $user->home_country_address }}
- Home Country Contact
Number: {{ $user->home_country_contact_number }}
- Home Country P.O. Box: {{ $user->original_po_box }}
- Nationality: {{ $user->nationality }}
- Marital Status: {{ $user->marital_status }}
- Visa Expiry Date: {{ $user->visa_expiry_date }}
- Medical Insurance Expiry
Date: {{ $user->medical_insurance_expiry_date }}
- Department: {{ $user->department or 'Not Assigned' }}
- Group: {{ $user->group or 'Not Assigned' }}
- Title: {{ $user->title }}
- Join Date: {{ $user->join_date }}
- Project/ Location: {{ $user->location }}
@if(is_array($user->managers))
-
Line Managers
@foreach($user->managers as $manager)
-
Line Manager#:{{ $i++ }}
{{ $manager->name }}
@endforeach
@endif
@endsection