mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 13:18:21 +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',
|
|
],
|
|
];
|