@extends('layouts/contentNavbarLayout') @section('title', 'User Access Configuration') @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('dashboard-analytics')], ['label' => 'KPI Administration'], ['label' => 'KPI Access Configuration'] ]; @endphp @section('content') @include('layouts.partials.page-header', [ 'title' => 'KPI Access Configuration', 'slot' => view('layouts.partials.breadcrumb', compact('breadcrumbs')) ]) @section('content')

Edit User Access




@php $availableRoles = [ 'KPI Administration' => [ 'Save KPI Configuration(s)', 'View KPI Configuration(s)', 'Update KPI Configuration(s)', 'Delete New Category', 'View User Roles', 'Assign/Reassign User Role and Access', 'Enable/Disable Existing User Access', ], 'KPI Indicator' => [ 'View KPI Indicator(s)', 'Reject KPI Indicator(s)', 'Endorse KPI Indicator(s)', 'Update Status With Remark', 'Assign Indicator Type and Info', 'Upload & View Attachments', 'Print KPI Indicator(s)', 'Export KPI indicator(s)', ], 'KPI Achievement' => [ 'View KPI Achievement(s)', 'Upload & Download Attachment(s)', 'Accept / Accept With condition on KPI Achievement(s)', 'Endorse KPI Achievement(s)', 'Print KPI Achievement(s)', 'Export KPI Achievement(s)', 'Disable/Enable KPI Indicator Based From Achievement(s)', ], 'KPI Dashboard' => [ 'View Report(s)', 'Print Report(s)', 'Export Report(s)', ], 'KPI Reporting' => [ 'View Report(s)', 'Add Anotations', 'Update Report (via SQL only)', 'Remove Report', 'Print Report', 'Export Report', 'Share/Unshare Report', 'Create Report', ], ]; @endphp @foreach ($availableRoles as $module => $roles)
{{ $module }}
@foreach ($roles as $role) @endforeach
Permission Active
{{ $role }}
@endforeach
@endsection