mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 05:08:21 +01:00
12 lines
248 B
PHP
12 lines
248 B
PHP
<?php
|
|
|
|
use App\Enums\ModelAttribute;
|
|
|
|
return [
|
|
'visibility' => [
|
|
ModelAttribute::VISIBILITY_PUBLIC => 'Public',
|
|
ModelAttribute::VISIBILITY_INTERNAL => 'Interne',
|
|
ModelAttribute::VISIBILITY_PRIVATE => 'Privé',
|
|
],
|
|
];
|