TextColumn Setting Properties on AfterStateUpdated()
![No description](https://cdn.answeroverflow.com/1316046477809811517/image.png)
which database type is best for filament to store millions of records?
![No description](https://cdn.answeroverflow.com/1316038141911498863/Untitled.png)
How to access attributes of a selected record, without duplicate queries?
Company::find($get('company_id'))
an additonal query will be fired. How can I prevent this?
```php
Forms\Components\Repeater::make('excursionsCompanies')
->label(__('excursion.excursionsCompanies'))...->content(fn (Get $get) => static::getCompany($get('id'))
```php
static function getCompany(int|string $id) {
return once(fn () => Company::find($get('company_id'))?->fullAddress));...ImportAction filling relational data from multiple columns
![No description](https://cdn.answeroverflow.com/1316023825120362586/Screenshot_2024-12-10_at_13.45.04.png)
Filament Test Fails for Force Delete Action but Works in Browser
ForceDeleteAction
for an organization in a Filament table builder Liveware component using Pest. The functionality works perfectly in the browser but fails during the test, with the error:``` Failed asserting that a row in the table [organizations] does not match the attributes { "id": "9db0f9f5-e8b5-4470-9d58-98cb00c76574"...
Cant download file from storage
is it possible to get the current theme-mode: [light/dark] variable in a controller?
404 while downloading export files
![No description](https://cdn.answeroverflow.com/1315995498464940093/image.png)
Communicate between form and table
Upload File to another table and get the id
![No description](https://cdn.answeroverflow.com/1315968391147946015/image.png)
FileUpload Validation Messages
![No description](https://cdn.answeroverflow.com/1315959057277784064/image.png)
Repeater - strange behaviour
![No description](https://cdn.answeroverflow.com/1315915686207422484/image.png)
Table UI for Checklist in Create Form
![No description](https://cdn.answeroverflow.com/1315891398477873162/Screen_Shot_2024-12-10_at_11.02.24_AM.png)
Hint under the label when inlineLabel(true) is used
![No description](https://cdn.answeroverflow.com/1315806809696636938/b0b31d3ff032b5c7.png)
Wrong Pivot Values
SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`cita-kita`.`blog_category_blog_post`, CONSTRAINT `blog_category_blog_post_blog_post_id_foreign` FOREIGN KEY (`blog_post_id`) REFERENCES `blog_posts` (`id`) ON DELETE CASCADE) (Connection: mysql, SQL: insert into `blog_category_blog_post` (`blog_category_id`, `blog_post_id`) values (01jenzmcnwkzh12v47xbf65vdr, 1))
SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`cita-kita`.`blog_category_blog_post`, CONSTRAINT `blog_category_blog_post_blog_post_id_foreign` FOREIGN KEY (`blog_post_id`) REFERENCES `blog_posts` (`id`) ON DELETE CASCADE) (Connection: mysql, SQL: insert into `blog_category_blog_post` (`blog_category_id`, `blog_post_id`) values (01jenzmcnwkzh12v47xbf65vdr, 1))
Table TextColumn URL() Styles
![No description](https://cdn.answeroverflow.com/1315702950814941284/image.png)
How can I display the delete button in bulkActions without having to select?
test select action inside modal
Using Getters in forms