@extends('layouts.mainlayout') @section('title', 'platforms') @section('main') @php $allPlatforms = ['Chrome_extension', 'Mobile_Device', 'Biometric', 'Browser']; $savedPlatforms = isset($platformMarkval) ? json_decode($platformMarkval->value, true) : []; // If no platforms saved, default to Chrome_extension onlys if (empty($savedPlatforms)) { $savedPlatforms = ['Chrome_extension']; } @endphp
@csrf
@if(!empty($biometricDevices) && count($biometricDevices))
Saved Biometric Devices
@foreach($biometricDevices as $key => $device) @endforeach
# Machine Name Machine ID Action
{{ $key + 1 }} {{ $device['machine_name'] ?? '-' }} {{ $device['machine_id'] ?? '-' }}
@endif
@endsection