@extends('dashboard.layouts.app') @section('content')
@include('dashboard.staff.show_tabs.basic_info') @include('dashboard.staff.show_tabs.contact_details') @include('dashboard.staff.show_tabs.job') @include('dashboard.staff.show_tabs.summary') @include('dashboard.staff.show_tabs.tickets') @include('dashboard.staff.show_tabs.recorded_sessions') @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.social') @include('dashboard.staff.show_tabs.project_access') @include('dashboard.staff.show_tabs.document_info') @include('dashboard.staff.show_tabs.educations') @include('dashboard.staff.show_tabs.work_experience') @if ($staff->department && strtolower($staff->department->name) === 'teacher') @include('dashboard.staff.show_tabs.activities') @include('dashboard.staff.show_tabs.specialization') @include('dashboard.staff.show_tabs.teacher_slots') @endif @if ($staff->department && strtolower($staff->department->name) === 'tester') @include('dashboard.staff.show_tabs.tester_slots') @endif
@endsection