@extends('layout.layout') @section('title', 'Departemen {{ $department->name }}') @include('components.navbar') @section('body') {{-- Hero Section Departemen --}}
{{-- Background Glow --}}

Struktur Organisasi

Departemen
{{ $department->name }}

{!! $department->about !!}
{{ $department->name }}
{{-- Section: Visi & Misi --}}

Arah Gerak

Visi & Misi Departemen

{{-- Visi --}}

Visi

{!! $department->vision !!}
{{-- Misi --}}

Misi

{!! $department->mision !!}
{{-- Staff Section --}}

Professional Team

Staff Departemen

@if ($department->staff->count())
@foreach ($department->staff as $staff)
{{-- Photo Container --}}
{{ $staff->name }} {{-- Overlay Gradient --}}
{{-- Info --}}

{{ $staff->name }}

{{ $staff->position }}
@endforeach
@else

Belum ada staff terdaftar di departemen ini.

@endif
@include('components.footer') @endsection