@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
ID |
{{-- Name | --}}
Email |
View |
@foreach ($department_employees as $department_employees)
{{ $loop->iteration }} |
{{-- {{ $department_employees->id }} | --}}
{{-- {{ $department_employees->name ?? '-' }} | --}}
{{ $department_employees->email }} |
View
|
@endforeach
@endif
@endsection