@extends('layouts.app') @section('content')
{{-- PAGE HERO --}}
{{ $rcName }}
{{-- Publication section --}}

{{ $szLanguageCode == 'hi' ? 'प्रकाशन' : 'Publications' }}

@forelse($arPublications as $publication)

{{ $szLanguageCode == 'hi' ? $publication->szTitleHindi : $publication->szTitle }}

{!! $szLanguageCode == 'hi' ? $publication->szPageContentHindi : $publication->szPageContent !!}
@empty
{{ $szLanguageCode == 'hi' ? 'कॉन्टेन्ट जल्द ही अपडेट किया जाएगा' : 'Data will be updated soon.' }}
@endforelse
@endsection