@extends('admin.layouts.app')
@section('title', 'Add Testimonial Details')
@section('section')
@php
if (!empty($testimonial->content)) {
// Decode the 'content' JSON string into an associative array.
$decodedData = json_decode($testimonial->content, true);
}
@endphp
Testimonial Section
| Heading |
Sub Heading |
Image |
Edit |
Delete |
@foreach($all_get_testimonials as $all_get_testimonial)
| {{$all_get_testimonial->heading}} |
{{$all_get_testimonial->sub_heading}} |
}}) |
Edit |
Delete |
@endforeach
@endsection
@section('script')
@endsection