@extends('admin.layouts.layout') @section('content')
@if ($contactUs) @foreach ($contactUs as $key => $contact) @endforeach @endif
Sr.No Name Email Message Action
{{ $key + 1 }} {{ $contact->name ?? '' }} {{ $contact->email ?? '' }} {!! Str::limit($contact->message, 50, '.........') !!}
@endsection