1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 17:54:03 +00:00

Merge branch '1.x' into db-storage-driver

This commit is contained in:
Samuel Štancl 2019-08-13 22:23:36 +02:00
commit 23dd42899a
6 changed files with 120 additions and 10 deletions

View file

@ -22,15 +22,13 @@ class TenancyServiceProvider extends ServiceProvider
*/
public function boot()
{
if ($this->app->runningInConsole()) {
$this->commands([
Run::class,
Seed::class,
Migrate::class,
Rollback::class,
TenantList::class,
]);
}
$this->commands([
Run::class,
Seed::class,
Migrate::class,
Rollback::class,
TenantList::class,
]);
$this->publishes([
__DIR__ . '/assets/config.php' => config_path('tenancy.php'),