@php $data = [ [ "heading" => "Banner Content", "fields" => [ ["type" => "text", "label" => "Title", "key" => "s1_title"], ["type" => "text", "label" => "Heading", "key" => "s1_heading"], ["type" => "textarea", "label" => "Content of Banner", "key" => "s1_content"], ] ], [ "heading" => "Job Application", "fields" => [ ["type" => "button","label" => "All Job Application","key" => "s2_button","href"=>route('admin.jobs.index'),"class" => "col-md-12"], ] ], [ "heading" => "Bottom Content", "fields" => [ ["type" => "text", "label" => "Title", "key" => "s2_title"], ["type" => "textarea", "label" => "Content", "key" => "s2_content"], ] ], ]; @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 : ''), "href" => (isset($field['href'])) ? $field['href'] : '', "hidden_value" => $field['hidden_value'] ?? null ]) @endforeach @endforeach