naungyehtet
naungyehtet
FFilament
Created by naungyehtet on 12/29/2023 in #❓┊help
Native false for SelectColumn?
Tables\Columns\SelectColumn::make('status') ->selectablePlaceholder(false) ->options(CustomStatus::class),
2 replies
FFilament
Created by naungyehtet on 12/28/2023 in #❓┊help
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
FFilament
Created by naungyehtet on 12/28/2023 in #❓┊help
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