<?php

namespace Lightscale\LaralightTables\Concerns;

trait Makable
{
    public static function make(mixed ...$args): static
    {
        return new static(...$args); // @phpstan-ignore new.static
    }
}