Hi There,
It is a great plugin for the single admin panel.
This plugin is not working in the filament's multi-tenancy.
If I add a single line to the resource page of the plugin, it works like a charm.
protected static bool $isScopedToTenant = false;
If I extend the resource still it is not working.
<?php
namespace App\Filament\Member\Resources;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
use TomatoPHP\FilamentWallet\Filament\Resources\WalletResource as TomatoWalletResource;
class WalletResource extends TomatoWalletResource
{
protected static bool $isScopedToTenant = false;
}
Hi There, It is a great plugin for the single admin panel. This plugin is not working in the filament's multi-tenancy.
If I add a single line to the resource page of the plugin, it works like a charm.
If I extend the resource still it is not working.