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