{{-- resources/views/frontend/show-department.blade.php --}} @extends('layouts.apps') @section('title', 'Department - Africa Inland Church Tanzania(AICT)') @section('content') @php use Illuminate\Support\Str; @endphp
{{-- ─── Main content (70%) ─────────────────────────────────── --}}

{{ $department->name }}

{{-- Department slider (increased height) --}} @if($department->sliders->isNotEmpty()) @endif {{-- Accordion panels --}}
@php $sections = [ 'About Us' => nl2br(e($department->about)), 'What We Do' => nl2br(e($department->what_we_do)), 'Programs' => nl2br(e($department->programs)), 'Our Staff' => ($department->leaders->isNotEmpty() ? '
  • '.implode('
  • ',$department->leaders->pluck('full_name')->all()).'
' : '

No staff yet.

'), 'Announcements' => ($department->posts->isNotEmpty() ? '' .collect($department->posts)->map(function($p){ return ""; })->implode('') .'
TitleDate
{$p->title}{$p->created_at->format('d M Y')}
' : '

No announcements.

'), 'Sponsors & Partners'=> nl2br(e($department->sponsors_partners)), 'Location & Contacts'=> "
" .nl2br(e($department->address))."
" ."Phone: {$department->phone}
" ."Email: email}\">{$department->email}" ."
", ]; @endphp @foreach($sections as $title => $body) @php $id = Str::slug($title); @endphp
{!! $body !!}
@endforeach
{{-- ─── Sidebar (30%) ─────────────────────────────────────── --}}
@endsection