@extends("app.layout.base") @section("title") Kontakt @endsection @section("content")

{{__('msg.kontakt')}}

@if(!$contacts->isEmpty()) @foreach($contacts as $contact)

{{__('msg.navn')}}: {{ $contact->contactname }}

{{__('msg.email')}}: {{ $contact->email }}

{{ $contact->title }}

@if($contact->phonetimes)

{{__('msg.telefontid')}}:

{!! $contact->phonetimes !!} @endif @if($contact->phone) +45 {{ chunk_split($contact->phone, 2, ' ') }} {{__('msg.ring')}} @endif @endforeach @else

{{__('msg.dereringenkontakter')}}!

@endif {{__('msg.sendfeedback')}} {{__('msg.givfeedback')}}
@endsection