@extends('layouts.apps')
@section('title', 'Department - Africa Inland Church Tanzania(AICT)')
@section('title','Department Leaders')
@section('content')
Department Leaders
{{-- choose department --}}
@if(request()->filled('department_id'))
Showing for
{{ $departments->firstWhere('id',request('department_id'))->name }}
@forelse($leaders as $ldr)
{{ $ldr->is_director ? 'Head':'Leader' }}
{{ $ldr->full_name }}
{{ $ldr->department->name }} Dept.
Read more
@empty
No leaders found in this department.
@endforelse
@endif
@endsection