{{$data->first_name}} {{$data->last_name}}
{{$data->email}} @php if($data->user_details->employee_status == 1) $emp_status= 'Permanent'; elseif($data->user_details->employee_status == 2) $emp_status= 'Probation'; elseif($data->user_details->employee_status == 3) $emp_status= 'Internee'; @endphp
  • Department{{$data->user_details->employee_department}}
  • Work Shift @foreach($workingshift as $row) {{ $data->user_details->working_shift == $row->id ? $row->name : '' }} @endforeach

  • Warning: Undefined variable $data in /home/tylozv2digitalse/public_html/commercial/resources/views/admin/dashboard/employees/details.blade.php on line 153

    Warning: Attempt to read property "user_details" on null in /home/tylozv2digitalse/public_html/commercial/resources/views/admin/dashboard/employees/details.blade.php on line 153

    Warning: Attempt to read property "joining_date" on null in /home/tylozv2digitalse/public_html/commercial/resources/views/admin/dashboard/employees/details.blade.php on line 153
  • Joining Date{{ date('m-d-Y', strtotime($date)) }}
  • Rating @if(isset($emp_rating) && $emp_rating > 0) @php for($rat=1;$rat<=$emp_rating; $rat++){ @endphp @php } @endphp @else 0 @endif
@if(isset($data->user_avatar->path) && $data->user_avatar->path != '') customersecimg @else img1 @endif
Personal details
Gender
Job History
@foreach($data->employees_job_history as $row) @endforeach
I.D Company Name Job Title Start Date End Date CREATED AT
{{ $row->id}} {{ $row->company_name}} {{ $row->job_title}} {{date('d M, Y', strtotime($row->start_date))}} {{date('d M, Y', strtotime($row->end_date))}} {{date('d M, Y', strtotime($row->created_at))}}
Employee Documents
@foreach($data->employee_documents as $row) @endforeach
I.D Document Name Document Discription Document CREATED AT
{{ $row->id}} {{ $row->name}} {{ $row->description}} Download Document {{date('d M, Y', strtotime($row->created_at))}}
Employee Leaves
@foreach($data->employee_leaves as $row)
Warning: Undefined variable $row in /home/tylozv2digitalse/public_html/commercial/resources/views/admin/dashboard/employees/details.blade.php on line 1036

Warning: Attempt to read property "duration" on null in /home/tylozv2digitalse/public_html/commercial/resources/views/admin/dashboard/employees/details.blade.php on line 1036

Warning: Undefined variable $row in /home/tylozv2digitalse/public_html/commercial/resources/views/admin/dashboard/employees/details.blade.php on line 1036

Warning: Attempt to read property "duration" on null in /home/tylozv2digitalse/public_html/commercial/resources/views/admin/dashboard/employees/details.blade.php on line 1036
@endforeach
I.D Date Category Duration CREATED AT Action
{{ $row->id}} {{date('d M, Y', strtotime($row->start_date))}} {{ $row->cat_name}} {{ $duration}} {{date('d M, Y', strtotime($row->created_at))}}
Employee Replace Day
@foreach($data->replace_day as $row) @endforeach
I.D Off Day Date Off Replace Date Service Name CREATED AT
{{ $row->id}} {{$row->off_date}} {{$row->replace_date}} {{$row->name}} {{date('d M, Y', strtotime($row->created_at))}}
Employee Day Off
@foreach($data->day_off_history as $row) @endforeach
I.D Day Start Date End Date CREATED AT
{{ $row->id}} {{$row->day_name}} {{$row->date_change}} @if(isset($row->end_date) && $row->end_date != ''){{$row->end_date}}@else{{'Currently'}}@endif {{date('d M, Y', strtotime($row->created_at))}}