@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