@php $contact_info=getter('contact')->setLang(app()->getLocale())->orderBy('id','desc')->get(1); if(isset($contact_info[0])){ $contact=$contact_info[0]; } $faqs=getter('faqs')->setLang(app()->getLocale())->get(); $paragraphs=getter('paragraphs')->setLang(app()->getLocale())->condition('position','=','contact-us')->get(); $banner=getter('banners')->setLang(app()->getLocale())->condition('position','=','news')->get(); @endphp @extends('layouts.main',[ 'compact'=>'compact' ]) @section('title') {{__('texts.contact-us')}} | {{env('APP_NAME')}} @endsection @section('content')
{{__('texts.contact-us')}}
@if(isset($contact))
{{--
--}} {{-- {{__('texts.contact-us-')}}--}} {{--
--}}
{{__('texts.telephone')}}
{{$contact->phone}}


{{__('texts.email')}}
{{$contact->email}}
{{__('texts.location')}}
{!! $contact->location !!}
{{-- Direction @include('includes.direction',['lang'=>app()->getLocale()])--}}
Administration Office
Museum Site
@endif
@if(isset($paragraphs) && count($paragraphs)>0) @php $c='no-aspect';@endphp @foreach($paragraphs as $paragraph) @include('components.paragraph',['paragraph'=>$paragraph,'no_aspect'=>$c]) @endforeach @endif
@if(isset($faqs) && count($faqs)>0)
FAQ
@foreach($faqs as $faq)
{{$faq->question}} @include('includes.plus')
{!! $faq->answer !!}
@endforeach
@endif
@if(isset($banner[0]->image)) @endif

{{__('texts.join-community')}}

@csrf
@endsection