@extends('layouts.admin') @section('content')
{{-- সাকসেস মেসেজ এলার্ট --}} @if(Session::has('success')) @endif
@forelse($data as $row) @empty @endforelse
{{ __('Name') }} {{ __('Email') }} {{ __('Subject') }} {{ __('Date') }} {{ __('Action') }}
{{ $row->name }} {{ $row->email }} {{ $row->subject ?? 'No Subject' }} {{ $row->created_at ? $row->created_at->format('d M, Y') : 'N/A' }}
{{-- ভিউ বাটন --}} View {{-- ডিলিট বাটন --}}
কোনো কন্টাক্ট মেসেজ পাওয়া যায়নি।
@endsection