naungyehtet
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
9 replies
How to overwrite default configurations for Panel?
In AppServiceProvider.php
Panel::configureUsing(function (Panel $panel): void {
$panel->brandLogo(asset('images/logo-32.png'))
->font('Poppins')
->viteTheme('resources/css/filament/admin/theme.css')
->databaseNotifications();
});
It is not woking.
6 replies