1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-17 13:18:21 +01:00
LinkAce/lang/de_DE/attributes.php
2024-08-26 17:01:44 +02:00

12 lines
252 B
PHP

<?php
use App\Enums\ModelAttribute;
return [
'visibility' => [
ModelAttribute::VISIBILITY_PUBLIC => 'Öffentlich',
ModelAttribute::VISIBILITY_INTERNAL => 'Intern',
ModelAttribute::VISIBILITY_PRIVATE => 'Privat',
],
];