mirror of
https://github.com/archtechx/tenancy-queue-tester.git
synced 2025-12-12 08:44:04 +00:00
initial commit
This commit is contained in:
commit
52d95e9370
12 changed files with 525 additions and 0 deletions
13
setup/Tenant_base.php
Normal file
13
setup/Tenant_base.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue