Parthiban N
Parthiban N
FFilament
Created by Parthiban N on 2/21/2025 in #❓┊help
Need a help in custom page with table
i found why it was happens, because i enable defer loading globally so first page loaded and then table loads, so how to use date from request query string in table loads
3 replies
FFilament
Created by Parthiban N on 2/10/2025 in #❓┊help
How to use the registered color in service provider to change the border color?
actually i added the colors() method in AdminPanelProvider also
6 replies
FFilament
Created by Parthiban N on 2/10/2025 in #❓┊help
How to use the registered color in service provider to change the border color?
in filament custom resource page
6 replies
FFilament
Created by Parthiban N on 2/10/2025 in #❓┊help
How to use the registered color in service provider to change the border color?
i check with the above code snippet but not works
6 replies
FFilament
Created by jayy26. on 1/1/2025 in #❓┊help
how to disable the select option in column?
❤️
8 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
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
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
Again i installed the fresh filament project it also shows the light theme mode of the same new light theme i shared
25 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
But the demo site version is not the latest one
25 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
Can you please explain it more?
25 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
How to fix it?
25 replies
FFilament
Created by jayy26. on 1/1/2025 in #❓┊help
how to disable the select option in column?
1. To disable the whole select use ->disabled(bool | Closure $condition = true) 2. To disable the options use ->disableOptionWhen(bool | Closure $callback)
8 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
i working in development and livewire version 3.5.12
25 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
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
25 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
but i do artisan optimize:clear and filament:clear still i get this color in light mode
25 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
No description
25 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
i mean setting the built-in background color functionality not looks good
25 replies
FFilament
Created by Parthiban N on 1/1/2025 in #❓┊help
New Light Theme issue for Notifications
->color('success') this one not looks good in new light theme
25 replies
FFilament
Created by Parthiban N on 12/23/2024 in #❓┊help
Table Toggle Column Issue in v3.2.131
Ok Thanks
14 replies
FFilament
Created by Parthiban N on 12/23/2024 in #❓┊help
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
FFilament
Created by Parthiban N on 12/23/2024 in #❓┊help
Table Toggle Column Issue in v3.2.131
i have a doubt i'm created the status column as boolean type in mysql and cast as StatusEnum in model that will not work how to do that? @toeknee
14 replies