Aman
Aman
FFilament
Created by Aman on 3/27/2025 in #❓┊help
Not Working LocaleSwitcher if i selected de or en
->afterStateUpdated(function (Set $set, ?string $state, Get $get) { $locale = $get('activeLocale') ?? app()->getLocale(); // Get current locale dd($locale); $slug = $get("slug.{$locale}"); if (blank($slug)) { $set("slug.{$locale}", Str::slug($state)); } }) In db i have en or de slug but again and again showing default lang 'de" in dd it working only one language when i edit post for 2nd lang automatic slug not Generating
2 replies
FFilament
Created by Aman on 3/19/2025 in #❓┊help
How can I send an email after creating a user in the Filament admin panel?
No description
7 replies
FFilament
Created by Aman on 3/11/2025 in #❓┊help
If we use Repeater how to unlink image from storage
Repeater::make('profile_photo') ->label('Profile Photos') ->schema([ Select::make('language') ->label('Language') ->options([ 'en' => 'English', 'de' => 'German', ]) ->required(), FileUpload::make('profile_photo') ->label('Profile Photo') ->image() ->directory('footer-profile') ->nullable() ->columnSpan(6) ->deleteUploadedFileUsing(function ($state, $record) { if (!$record) return; // Decode profile_photo if stored as JSON (only needed if it's not auto-decoded) $photos = is_string($record->profile_photo) ? json_decode($record->profile_photo, true) : $record->profile_photo; // Ensure it's an array if (!is_array($photos)) return; // Iterate over the profile_photo array to find the correct image foreach ($photos as $photo) { dd($record->language); if (isset($photo['language']) && $photo['profile_photo'] === $record->language) { info("Deleting: " . $photo['profile_photo']); Storage::disk('public')->delete($photo['profile_photo']); } } }) ]) ->columnSpan(12) ->addable() ->deletable()
4 replies
FFilament
Created by Aman on 2/25/2025 in #❓┊help
On Update unlink old image
:fi:
3 replies