globaldrive/tenant-filter

A Laravel Nova tool.

0.0.4 2023-12-14 07:28 UTC

This package is not auto-updated.

Last update: 2024-10-31 13:05:49 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'); } }