@php /** @var string $fieldKey gps|consultants|contractors */ /** @var string $mode */ $fieldKey = $fieldKey ?? 'gps'; $mode = in_array((string) ($mode ?? ''), ['single', 'unit_wise'], true) ? (string) $mode : 'single'; $hiddenName = match ($fieldKey) { 'gps' => 'gps_reporting_mode', 'consultants' => 'consultants_reporting_mode', 'contractors' => 'contractors_reporting_mode', default => $fieldKey.'_reporting_mode', }; @endphp