mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 13:18:21 +01:00
12 lines
252 B
PHP
12 lines
252 B
PHP
<?php
|
|
|
|
use App\Enums\ModelAttribute;
|
|
|
|
return [
|
|
'visibility' => [
|
|
ModelAttribute::VISIBILITY_PUBLIC => 'Öffentlich',
|
|
ModelAttribute::VISIBILITY_INTERNAL => 'Intern',
|
|
ModelAttribute::VISIBILITY_PRIVATE => 'Privat',
|
|
],
|
|
];
|