Files
stuart-craig-removals/app/Traits/HasTableName.php
T
Shaun Collins 646041230b Init
2026-03-04 16:34:33 +00:00

12 lines
153 B
PHP

<?php
namespace App\Traits;
trait HasTableName
{
public static function tableName(): string
{
return (new static)->getTable();
}
}