Files
online.tbbank.gov.tm-larave…/nova/src/WithIcon.php
2024-09-01 18:54:23 +05:00

27 lines
408 B
PHP

<?php
namespace Laravel\Nova;
trait WithIcon
{
/**
* The type of icon that should represent the item.
*
* @var string|null
*/
public $icon = null;
/**
* Set the content to be used for the item's icon.
*
* @param string $icon
* @return $this
*/
public function withIcon($icon)
{
$this->icon = $icon;
return $this;
}
}