mirror of
https://github.com/archtechx/tenancy-queue-tester.git
synced 2025-12-12 09:44:03 +00:00
13 lines
335 B
PHP
Executable file
13 lines
335 B
PHP
Executable file
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Stancl\Tenancy\Database\Models\Tenant as BaseTenant;
|
|
use Stancl\Tenancy\Contracts\TenantWithDatabase;
|
|
use Stancl\Tenancy\Database\Concerns\HasDatabase;
|
|
use Stancl\Tenancy\Database\Concerns\HasDomains;
|
|
|
|
class Tenant extends BaseTenant implements TenantWithDatabase
|
|
{
|
|
use HasDatabase, HasDomains;
|
|
}
|