← {{ __('Back to Departments') }}
@if ($department->logo)
{{ $department->getTranslation('name', app()->getLocale()) }}
@endif

{{ $department->getTranslation('name', app()->getLocale()) }}

@if ($department->getTranslation('description', app()->getLocale()))
{!! $department->getTranslation('description', app()->getLocale()) !!}
@endif
@if ($departmentMenu)

{{ __('Department Links') }}

@endif @php $departmentNews = \App\Models\News::with(['categories', 'galleries']) ->where('status', 'published') ->whereNotNull('published_at') ->where('department_id', $department->id) ->orderBy('published_at', 'desc') ->limit(6) ->get(); @endphp @if ($departmentNews->count() > 0)

{{ __('Department News') }}

@foreach ($departmentNews as $item) @endforeach
@endif