@extends('layouts.portal.app') @section('title', "Settings Team & Roles InsightsReady") @push('styles') @endpush @section('content') Extensions @foreach($installedApps as $companyApp) @php $schema = json_decode($companyApp->config_schema ?? '[]', true); $values = $companyApp->pivot->settings ? json_decode($companyApp->pivot->settings, true) : []; @endphp {{ $companyApp->name }} @csrf @method('PUT') @foreach($schema as $field) {{ $field['label'] }} @if($field['type'] === 'select') @foreach($field['options'] ?? [] as $option) {{ $option }} @endforeach @else @endif @endforeach Save Settings @endforeach @endsection