Case Access

@if (isset($chkBoxSettings[3]) && $chkBoxSettings[3])
@if (count($assignedTypes) > 0)

Forms

Involving Sites

@foreach ($assignedTypes as $formId) @php $form = $forms->firstWhere('id', $formId); $selectedLocations = $assingedLocations[$formId] ?? []; // Get assigned locations for this specific form @endphp
{{ $form->name }}
@if ($form->is_external_link == 0)
@else
@endif
@endforeach
@endif @endif
@if (isset($chkBoxSettings[4]) && $chkBoxSettings[4])
@if (count($assignedUsers) > 0)

Users

@foreach ($assignedUsers as $userId) @php $user = $users->firstWhere('id', $userId); @endphp @if (isset($user))
{{ $user->user->name }}
@endif @endforeach
@endif @endif
@push('scripts') @endpush