Parthiban N
New Light Theme issue for Notifications
finally i found where i made a mistake, sorry for wasting your time and thanks for your cooperation. Actually i overload the filament app.css using PanelsRenderHook::HEAD_END with the default resources/css/app.css
25 replies
New Light Theme issue for Notifications
Filament ...............................................................................................................
Blade Icons ................................................................................................. NOT CACHED
Packages ............................................................... filament, forms, notifications, support, tables
Panel Components ............................................................................................ NOT CACHED
Version ....................................................................................................... v3.2.132
Views .................................................................................................... NOT PUBLISHED
Blade Icons ................................................................................................. NOT CACHED
Packages ............................................................... filament, forms, notifications, support, tables
Panel Components ............................................................................................ NOT CACHED
Version ....................................................................................................... v3.2.132
Views .................................................................................................... NOT PUBLISHED
25 replies
Table Toggle Column Issue in v3.2.131
<?php
namespace App\Enums;
use Filament\Support\Contracts\HasColor;
use Filament\Support\Contracts\HasLabel;
enum StatusEnum: int implements HasLabel, HasColor
{
case Enable = 1;
case Disable = 0;
public function getLabel(): ?string {
return match ($this) {
self::Enable => 'Enabled',
self::Disable => 'Disabled',
};
}
public function getColor(): string | array | null {
return match ($this) {
self::Enable => 'success',
self::Disable => 'danger',
};
}
public function getAllValues() : array {
return array_column(self::cases(), 'value');
}
}
i am using this enum for the casting but it doesn't works
14 replies