@extends('admin.layouts.app') @section('title', 'All Contact User') @section('section') @php if (!empty($contact->content)) { // Decode the 'content' JSON string into an associative array. $decodedData = json_decode($contact->content, true); } @endphp

Contact Form

@csrf

Contact Section


Contact Section

@foreach($all_get_contacts as $all_get_contact) @endforeach
First Name Email Message status Edit
{{$all_get_contact->first_name}} {{$all_get_contact->email}} {{ substr($all_get_contact->message, 0, 20) }} {{ strlen($all_get_contact->message) > 100 ? '...' : '' }} {{$all_get_contact->status === 1 ? 'Send The Complete Register Link To The User' : 'Not Send The Register Link'}} Edit
@endsection @section('script') @endsection