Blackpig
Blackpig
FFilament
Created by DimZeta on 11/28/2024 in #❓┊help
Select same value multiple times
If i understand correctly you want to be able to select multiple options from a pre-defined list of options? That's probably best suited to a checkbox list https://filamentphp.com/docs/3.x/forms/fields/checkbox-list
9 replies
FFilament
Created by Stricks on 10/18/2024 in #❓┊help
Can I use a filament table outside of Filament directories?
49 replies
FFilament
Created by Blackpig on 8/30/2024 in #❓┊help
Dynamic placeholder content renders HTML as text string not mark-up
God I'm an idiot - I'm typing the return as string - change it to HTMLString and all is good. Quack Quack, thanks for listening!
4 replies
FFilament
Created by Alnuaimi on 8/15/2024 in #❓┊help
How to Fix 'Call to undefined method' Error in Inherited Laravel Model?
Where are you calling the method from? - are you importing the vendor file or your extended file there?
14 replies
FFilament
Created by Andi on 8/9/2024 in #❓┊help
Managing 3 levels (or more) deep relations.
Nested resources will be natively supported in v4 in the meantime you can use this plugin https://discord.com/channels/883083792112300104/1167940700130791574 which i have used to manage resources nested to 4 levels deep
3 replies
FFilament
Created by Blackpig on 7/15/2024 in #❓┊help
Disable entire form - throws error when checking $operation
->disabled(fn (?Quote $record): bool => $record !== null && $record->status == 'final')
6 replies
FFilament
Created by Blackpig on 7/15/2024 in #❓┊help
Disable entire form - throws error when checking $operation
Yep, I adjusted to check for the record existence instead
6 replies
FFilament
Created by Blackpig on 7/1/2024 in #❓┊help
Custom layout - setting data from $get throws fatal Typed property initialization error
I'm trying to use an existing method from the ViewComponent - if I change my method from viewData to layoutData and getLayoutData it's all good. Thanks for listening 🦆
4 replies
FFilament
Created by Blackpig on 6/21/2024 in #❓┊help
Add an option to Checkboxlist via an Action
RTFM - I didn't know that method existed. Thanks.
6 replies
FFilament
Created by Blackpig on 6/21/2024 in #❓┊help
Add an option to Checkboxlist via an Action
No description
6 replies
FFilament
Created by Blackpig on 12/23/2023 in #❓┊help
Spatie Translatable Plugin - Repeater Fields Supported
Sorry, been busy with work. If I get time I'll spin up a quick project later. IIRC - I just added the repeater field to the translatable array on the model and added the relevant traits/concerns. The main difference from a normal text input is when switching locale, the text input would be on the page ready for the new language input. But with a repeater - if you have already added 3 in the 'EN' locale and then switch to 'FR' - you would need to add the 3 repeaters again - it doesn't auto-magically create 3 'empty' repeaters awaiting translated input. I also wasn't using the repeater for a relationship - it was data stored in a JSON field on the model.
11 replies
FFilament
Created by Blackpig on 12/23/2023 in #❓┊help
Spatie Translatable Plugin - Repeater Fields Supported
ok, I'll see if I can find out where I used it
11 replies
FFilament
Created by Blackpig on 12/23/2023 in #❓┊help
Spatie Translatable Plugin - Repeater Fields Supported
@Haydra help you with what?
11 replies
FFilament
Created by jakeb on 4/24/2024 in #❓┊help
Data Submitted with forms not making it into SQL Query
Easily done 👍🏻
6 replies
FFilament
Created by jakeb on 4/24/2024 in #❓┊help
Data Submitted with forms not making it into SQL Query
Change your fillable in the model to protected $fillable = ['ipint', 'dnsptr'];
6 replies
FFilament
Created by Tobi@sdk on 4/10/2024 in #❓┊help
I 'm looking for Laravel Nova expert.
Try there ^^^
5 replies
FFilament
Created by Tobi@sdk on 4/10/2024 in #❓┊help
I 'm looking for Laravel Nova expert.
5 replies
FFilament
Created by WEBMAS on 4/5/2024 in #❓┊help
How to place a navigation element without a group between groups or after?
Sometimes we have to live within the limitations of the tools we use . Filament is incredibly flexible and you have been given multiple potential solutions - if none of them are an exact fit for your needs then you may need to adapt your expectations and requirements
54 replies
FFilament
Created by L!am on 4/5/2024 in #❓┊help
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'shipment_items.organization_id' in 'where cl
32 replies
FFilament
Created by L!am on 4/5/2024 in #❓┊help
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'shipment_items.organization_id' in 'where cl
I don't know the VSCode extension you're using but can you access mysql from your command line? If so DESCRIBE <your_table> will show your table definition
32 replies