@extends('layouts.demo10.base') @section('content') @can('view.pii_management')

PII Management System

Home / Projects / {{ $currentProject->name ?? 'Project' }} / PII Management
{{--

PII Management System

--}}

Role

{{-- Role select — wrap in div with onchange audit ───────── --}}

Dataset Attributes

@php $groupedAttributes = collect($attributes)->groupBy('table'); @endphp @if(count($attributes) > 0)
{{-- Global Select All ───────────────────────────────────── --}}
@endif
@forelse ($groupedAttributes as $tableName => $tableAttributes) @php $tableSlug = Str::slug($tableName); @endphp
{{ $tableName }}
{{-- Section Select All (inside the @forelse loop) ────────── --}}
@foreach ($tableAttributes as $index => $attribute)
@endforeach
@empty
No dataset attributes found in the connected database.
@endforelse
@can('edit.pii_management') {{-- Save button ─────────────────────────────────────────── --}} @endcan
@else

Access Denied

You do not have permission to view this page.

@endcan @endsection @section('scripts') @vite('resources/js/pages/pii-management.js') @endsection