Grand Hyper Markets

Search employees with their Employee ID

@csrf
Employee Details

Employee ID :

{{ $employee_data['emp_id'] ?? '' }}

Name :

{{ $employee_data['name'] ?? '' }}

Location :

{{ $employee_data['location'] ?? '' }}

Joining Date :

{{ $employee_data['joining_date'] ?? '' }}

Department :

{{ $employee_data['department'] ?? '' }}

Designation :

{{ $employee_data['designation'] ?? '' }}
@csrf

@if ($question_datas)
  
@foreach ($question_datas as $category)
{{ $category['title'] }}
@foreach ($category['questions'] as $qtn)
1. {{ $qtn->title }}

{{ $qtn->description }}

@endforeach
@endforeach
@endif