@php $data = [ [ "heading" => "Banner Content", "fields" => [ ["type" => "text", "label" => "Title of the banner section", "key" => "s1_title" , "class" => "col-md-12"], ["type" => "textarea", "label" => "Content of Banner", "key" => "s1_content" , "class" => "col-md-12"], ["type" => "image", "label" => "Banner Image", "key" => "s1_media_id" , "class" => "col-md-12"], ] ], [ "heading" => "Service Section Content", "fields" => [ ["type" => "button","label" => "All Service","key" => "s5_button","href"=>route('admin.services.index'),"class" => "col-md-12"], ] ], ]; @endphp @foreach($data as $section)

{{ $section['heading'] }}

@foreach($section['fields'] as $field) @include("admin.static_pages._partials.inputs.{$field['type']}", [ "label" => $field['label'], "key" => $field['key'], "value" => $obj->content[$field['key']] ?? ($field['type'] === 'image' ? null : ''), "class" => (isset($field['class'])) ? $field['class'] : '', "href" => (isset($field['href'])) ? $field['href'] : '', "hidden_value" => $field['hidden_value'] ?? null ]) @endforeach

@endforeach