mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-15 18:34:03 +00:00
11 lines
156 B
PHP
11 lines
156 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Database\Concerns;
|
|
|
|
trait TenantConnection
|
|
{
|
|
public function getConnectionName()
|
|
{
|
|
return 'tenant';
|
|
}
|
|
}
|