@if($latestRecords->isEmpty())
{{ __('pages/contact-support.dashboard.no_recent') }}
@else
| # |
{{ __('pages/contact-support.labels.user_details') }} |
{{ __('pages/contact-support.labels.email') }} |
{{ __('pages/contact-support.labels.subject') }} |
{{ __('pages/contact-support.labels.status') }} |
{{ __('pages/contact-support.labels.submitted_date') }} |
{{ __('pages/contact-support.labels.actions') }} |
@foreach($latestRecords as $record)
| {{ $loop->iteration }} |
{{ $record->full_name }}
|
{{ $record->email }} |
{{ $record->subject }} |
{{ $record->status_label }}
|
{{ $record->formatted_created_at }} |
|
@endforeach
@endif