mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-03-13 19:29:39 +01:00
12 lines
250 B
PHP
12 lines
250 B
PHP
|
<?php
|
||
|
|
||
|
use App\Enums\ModelAttribute;
|
||
|
|
||
|
return [
|
||
|
'visibility' => [
|
||
|
ModelAttribute::VISIBILITY_PUBLIC => 'Public',
|
||
|
ModelAttribute::VISIBILITY_INTERNAL => 'Internal',
|
||
|
ModelAttribute::VISIBILITY_PRIVATE => 'Private',
|
||
|
],
|
||
|
];
|