UsefulLinkLocation.php 276 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Enums;
  3. enum UsefulLinkLocation:String
  4. {
  5. /**
  6. * Top bar
  7. * Only visible in the dashboard view
  8. */
  9. case topbar = "topbar";
  10. /**
  11. * Dashboard
  12. * Only visible in the dashboard view
  13. */
  14. case dashboard = "dashboard";
  15. }