@extends('dashboard.layouts.app') @section('content') @include('components.alert') Show Employee @if(\App\Models\Staff::where('old_manager_id', $staff->id)->exists()) @csrf @endif Personal Details Job Education Work Experience Summary Tickets Payslip Referrals Payroll Details Other Info @if ($staff->jobTitle && strtolower($staff->jobTitle->slug) === 'teacher') Performance Report Teacher Shift Specialization @endif @if ($staff->jobTitle && strtolower($staff->jobTitle->slug) === 'tester') Tester Shift @endif @include('dashboard.staff.show_tabs.basic_info') @include('dashboard.staff.show_tabs.job') @include('dashboard.staff.show_tabs.summary') @include('dashboard.staff.show_tabs.tickets') @include('dashboard.staff.show_tabs.payslip') @include('dashboard.staff.show_tabs.referrals') @include('dashboard.staff.show_tabs.payroll') @include('dashboard.staff.show_tabs.bank_info') @include('dashboard.staff.show_tabs.project_access') @include('dashboard.staff.show_tabs.performance_report') @include('dashboard.staff.show_tabs.educations') @include('dashboard.staff.show_tabs.work_experience') @if ($staff->jobTitle && strtolower($staff->jobTitle->slug) === 'teacher') @include('dashboard.staff.show_tabs.teacher_slots') @include('dashboard.staff.show_tabs.specialization') @endif @if ($staff->jobTitle && strtolower($staff->jobTitle->slug) === 'tester') @include('dashboard.staff.show_tabs.tester_slots') @endif @endsection