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

17 lines
226 B
PHP

<?php
namespace Laravel\Nova;
trait Makeable
{
/**
* Create a new element.
*
* @return static
*/
public static function make(...$arguments)
{
return new static(...$arguments);
}
}