@extends('admin.layouts.app') @section('title', 'Add Contact Details') @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 Last Name Email Phone number Message
{{$all_get_contact->first_name}} {{$all_get_contact->last_name}} {{$all_get_contact->phone}} {{$all_get_contact->email}} {{$all_get_contact->message}}
@endsection @section('script') @endsection