@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 Section
| First Name |
Last Name |
Email |
Phone number |
Message |
@foreach($all_get_contacts as $all_get_contact)
| {{$all_get_contact->first_name}} |
{{$all_get_contact->last_name}} |
{{$all_get_contact->phone}} |
{{$all_get_contact->email}} |
{{$all_get_contact->message}} |
@endforeach
@endsection
@section('script')
@endsection