globaldrive/tenant-filter

一个 Laravel Nova 工具。

0.0.4 2023-12-14 07:28 UTC

This package is not auto-updated.

Last update: 2024-10-03 12:45:55 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'); } }