Method not allowed in TenantProfile page
Select::configureUsing(function (Select $select): void {
$select
->native(false)
->searchable(fn (?Model $model): bool => (bool) $model)
->preload();
});
The error comes from searchable() configuration in AppServiceProvider.php
$select
->native(false)
->searchable(fn (?Model $model): bool => (bool) $model)
->preload();
});
The error comes from searchable() configuration in AppServiceProvider.php