panel.access.options

Permission to access the site options

Set this to false if you want to hide the "Site options" menu item in the Panel and deny access to the entire site options section.

Example

<?php

// site/roles/editor.php
return [
  'name'        => 'Editor',
  'default'     => false,
  'permissions' => [
    '*'                    => true,
    'panel.access.options' => false,
  ]
];