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