{{ __('Position Details') }}

{{ __('Name') }} (AR): {{ $position->getTranslation('name', 'ar') }}
{{ __('Name') }} (EN): {{ $position->getTranslation('name', 'en') }}
{{ __('Department') }}: {{ optional($position->department)->name ?? '-' }}
{{ __('Employees Count') }}: {{ $position->employees()->count() }}
{{ __('Description (AR)') }}:

{{ $position->getTranslation('description', 'ar') ?? '-' }}

{{ __('Description (EN)') }}:

{{ $position->getTranslation('description', 'en') ?? '-' }}

@if($position->image)
{{ __('Image') }}: {{ $position->name }}
@endif