@extends('layouts.dashboard') @section('title', $user->name . ' - User Profile') @section('content')
{{ $role }}
Email: {{ $user->email }}
Phone: {{ $user->phone_number }}
Department: {{ $user->department->name ?? '-' }}
Reporting Person: {{ $user->reportingPerson->name ?? '-' }}
Monthly Target: {{ $user->monthly_target }}
Upsell Incentive: {{ $user->upsell_incentive }}%
Disable Login: {{ $user->disable_login ? 'Yes' : 'No' }}
Employee Code: {{ $user->employee_code }}
Experience: {{ $user->experience ?? '-' }}
Qualification: {{ $user->qualification ?? '-' }}
Specialization: {{ $user->specialization ?? '-' }}
Date of Joining: {{ $user->date_of_joining ? \Carbon\Carbon::parse($user->date_of_joining)->format('d M, Y') : '-' }}
Added by: {{ $note->addedBy->name ?? '-' }} | Date: {{ $note->created_at->format('Y-m-d H:i:s') }}
Title: {{ $note->title }}
Rating: @if($note->rating) @for($i = 1; $i <= 5; $i++) @endfor @else - @endif
Note Type: {{ $note->note_type }}
Description: {{ $note->description }}
No notes added yet.
@endforelseAdded by: {{ $note->addedBy->name ?? '-' }} | Date: {{ $note->created_at->format('Y-m-d H:i:s') }}
Title: {{ $note->title }}
Note Type: {{ $note->note_type }}
Rating: @if($note->rating) @for($i = 1; $i <= 5; $i++)
@endfor @else - @endifDescription: {{ $note->description }}
No HR notes added yet.
@endforelseNo DSR reports found for this user.
@elseProject Name | Work Details | Date | Hours | Someone Helped? |
---|---|---|---|---|
{{ $dsr->project->name_or_url ?? 'N/A' }} | {{ Str::limit($dsr->work_description, 60) }} | {{ \Carbon\Carbon::parse($dsr->created_at)->format('d M Y') }} | {{ $dsr->hours }} | {{ $dsr->helper ? $dsr->helper->name : 'No' }} |