@extends('layouts.admin-layout') @section('title', 'All Contact User') @section('content')
@csrf

Contact Section

{{--
Profile Preview
--}} {{--
@php $contactPage = \App\Models\Pages::where('name', 'Contact')->first(); $videoUrl = $contactPage ? $contactPage->getFirstMediaUrl('contact_banner_video') : null; @endphp @if ($videoUrl) @else @endif
--}}
{{--
--}}

Contact Section

{{-- --}} {{-- --}} @foreach ($get_contacts as $contact) {{-- --}} {{-- --}} @endforeach
S.N. First Name Email MessagestatusEdit
{{ $loop->iteration }} {{ $contact->first_name }} {{ $contact->email }} {{ substr($contact->message, 0, 20) }} {{ strlen($contact->message) > 100 ? '...' : '' }} --}} {{-- {{$contact->status === 1 ? 'Send The Complete Register Link To The User' : 'Not Send The Register Link'}} --}} {{-- --}} {{-- --}} {{--
@endsection @section('script') @endsection