add: full multi-tenancy control

This commit is contained in:
Cauê Faleiros
2026-02-02 15:31:15 -03:00
commit c6ec92802b
1711 changed files with 258106 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Webkul\Core\Facades;
use Illuminate\Support\Facades\Facade;
class Acl extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'acl';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Webkul\Core\Facades;
use Illuminate\Support\Facades\Facade;
class Core extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'core';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Webkul\Core\Facades;
use Illuminate\Support\Facades\Facade;
class Menu extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'menu';
}
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Webkul\Core\Facades;
use Illuminate\Support\Facades\Facade;
class SystemConfig extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'system_config';
}
}