ctrlpanel/app/Enums/UsefulLinkLocation.php

20 lines
276 B
PHP
Raw Normal View History

<?php
namespace App\Enums;
enum UsefulLinkLocation:String
{
/**
* Top bar
* Only visible in the dashboard view
*/
case topbar = "topbar";
/**
* Dashboard
* Only visible in the dashboard view
*/
case dashboard = "dashboard";
}