@extends('layouts.app') @section('title', 'Team List') @section('content')

{{-- @php // dd($departments); $departments->department_name; @endphp --}} {{ $departments->department_name ?? 'All team' }} Team

@if ($department_employees->isEmpty())
No team members found for this department.
@else {{-- --}} @foreach ($department_employees as $department_employees) {{-- --}} {{-- --}} @endforeach
IDNameEmail View
{{ $loop->iteration }}{{ $department_employees->id }}{{ $department_employees->name ?? '-' }}{{ $department_employees->email }} View
@endif
@endsection