1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-03-13 19:29:39 +01:00
LinkAce/lang/en_US/attributes.php

12 lines
250 B
PHP
Raw Permalink Normal View History

<?php
use App\Enums\ModelAttribute;
return [
'visibility' => [
ModelAttribute::VISIBILITY_PUBLIC => 'Public',
ModelAttribute::VISIBILITY_INTERNAL => 'Internal',
ModelAttribute::VISIBILITY_PRIVATE => 'Private',
],
];