@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Contact Messages')) @section('header-title')

{{ __('Contact Messages') }}

@endsection @push('styles') @endpush @section('content')

{{ __('Contact Messages') }}

@forelse ($allcontacts as $contact)
@if (!$contact->state)
{{ __('unread') }}
@else
{{ __('read') }}
@endif
icon

{{ $contact->name }}

{{ __('Subject') }} : {{ $contact->subject }}

{{ \Illuminate\Support\Str::limit($contact->message, 120, ' ...') }}

{{-- Read / Unread Badge --}} @if (!$contact->state) {{ __('Unread') }} @else {{ __('Read') }} @endif {{-- Icon --}}
icon
{{-- Title & Small Details --}}
{{ $contact->name }}
Subject: {{ $contact->subject }}
{{-- Actions --}}
{{-- modal start --}} {{-- modal end --}} @empty
{{ __('No information available') }}.
@endforelse
{{ $allcontacts->links() }}
@endsection @push('styles') @endpush @push('scripts') @endpush