@php $data = [ [ "heading" => "Banner Content", "fields" => [ ["type" => "text", "label" => "Title", "key" => "s1_title"], ["type" => "text", "label" => "Short Description", "key" => "s1_short_description"], ["type" => "text", "label" => "Short Title", "key" => "s1_short_title"], ["type" => "button","label" => "All Banks","key" => "s3_button","href"=>route('admin.banks.index'),"class" => "col-md-12"], ] ], [ "heading" => "Emi", "fields" => [ ["type" => "text", "label" => "Title", "key" => "s2_title"], ] ], [ "heading" => "Loan Amount", "fields" => [ ["type" => "text", "label" => "Title", "key" => "s3_title"], ["type" => "text", "label" => "Minimum Loan Amount", "key" => "s3_minimum_loan_amount"], ["type" => "text", "label" => "Maximum Loan", "key" => "s3_maximum_loan_text"], ["type" => "text", "label" => "Maximum Loan Amount", "key" => "s3_maximum_loan_amount"], ] ], [ "heading" => "Annual Interest Rate", "fields" => [ ["type" => "text", "label" => "Title", "key" => "s4_title"], ["type" => "text", "label" => "Minimum Interest Rate", "key" => "s4_minimum_interest_rate"], ["type" => "text", "label" => "Maximum Interest", "key" => "s4_maximum_interest"], ["type" => "text", "label" => "Maximum Interest Rate", "key" => "s4_maximum_interest_rate"], ] ], [ "heading" => "Tenure ", "fields" => [ ["type" => "text", "label" => "Title", "key" => "s5_title"], ["type" => "text", "label" => "Minimum Tenure", "key" => "s5_minimum_tenure"], ["type" => "text", "label" => "Maximum Tenure", "key" => "s5_maximum_tenure"], ["type" => "text", "label" => "Maximum Tenure Value", "key" => "s5_maximum_tenure_value"], ] ], ]; @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'] : '', ]) @endforeach @endforeach