diff options
author | Sam Light <samlight1994@gmail.com> | 2025-03-30 14:20:57 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-03-30 14:20:57 +0100 |
commit | e744b8d67ef1d18050158dd523ba7d804c1c8528 (patch) | |
tree | 56c90a83912bd63bdd507e76e5ef00c82a904b50 /src/Concerns/Makable.php | |
parent | a883170dd1c723bcd02916f9bc8a96ed85a61761 (diff) |
Filters, sorting, escaping and more....
Diffstat (limited to 'src/Concerns/Makable.php')
-rw-r--r-- | src/Concerns/Makable.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Concerns/Makable.php b/src/Concerns/Makable.php new file mode 100644 index 0000000..7562970 --- /dev/null +++ b/src/Concerns/Makable.php @@ -0,0 +1,11 @@ +<?php + +namespace Lightscale\LaralightTables\Concerns; + +trait Makable +{ + public static function make(mixed ...$args): static + { + return new static(...$args); + } +} |