@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)
@if($field['type'] === 'select') @else @endif
@endforeach
@endforeach
@endsection