@extends('layouts.app') @section('title', $app_setting['name'] . ' | ' . __('Contact Messages')) @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, ' ...') }}

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

{{ $contact->name }}

{{--

Subject : {{ $contact->subject }}

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

--}}
{{-- modal start --}} {{-- modal end --}} @empty
{{ __('No information available') }}.
@endforelse
{{ $allcontacts->links() }}
@endsection @push('scripts') @endpush