@extends('frontend.layouts.app') @section('title', 'Message From the Director') @section('meta', 'Message From the Director') @section('content')
Banner Image

{{ __('message-from-the-director.message_from') }}

{{ __('message-from-the-director.home') }}

>

{{ __('message-from-the-director.message_from') }}

{{ __('message-from-the-director.a_few_words') }}

{{ __('message-from-the-director.message_from') }}

{{ __('message-from-the-director.director_message_description') }}

@foreach ($teams as $team)
{{ $team->{'name_' . app()->getLocale()} }}
@if (app()->getLocale() == 'np')

{{ $team->name_np }}

@else

{{ $team->name_en }}

@endif

{{ $team->designation?->{'name_' . app()->getLocale()} ?? '—' }}

{!! app()->getLocale() == 'np' ? $team->description_np : $team->description_en !!}

@endforeach
@endsection