globaldrive/tenant-filter

A Laravel Nova tool.

Installs: 17

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

pkg:composer/globaldrive/tenant-filter

0.0.4 2023-12-14 07:28 UTC

This package is not auto-updated.

Last update: 2025-10-30 18:04:09 UTC


README

1)подключается в NovaServiceProvider

use Gd\TenantFilter\TenantFilter;

public function tools() { return [ new TenantFilter, ]; }

2)пример использования в фильтрах

public function default() { if (Session::get('globalTenantFilter')) { return Session::get('globalTenantFilter'); } }