Laravel / Filament – Log in via iFrame not working (SameSite)
I have a Laravel application with Filament v3. When I try to log in to the application via the domain name directly, everything works fine. However, when I try to log in via an iFrame, it just reloads the login page and nothing further happens.
Method FilamentTablesColumnsTextColumn::lineClamp does not exist
hey im using laravel filament and i got this error
Auditing relationship models in Filament 3
I have set up an AuditRelationsManager Resource setup in Filament 3 to audit changes to the Receipts model however the Recipts also have Comments and Attachments that I would like to Audit also. Both have been setup as Relations that show up on the Recipts List & Edit view.
Add Dropdown element to Laravel Filament top bar
Imported resource from 2nd branch of filament into 3rd got error
On laravel 10 app with filament ^3.20-stable I imported resource from the second branch of filament
and got error :
How in getEloquentQuery to check which status filter is selected now?
In laravel 10 / filamentphp 3 app I have a table with default ordering and several filters :
Why related state / region selection field does not work?
In laravel 10 / filamentphp 3 app I have 3 related country/state/region fields referencing table :
how to write this code in latest version of filament?
public static function getRelations(): array { return [ RelationsHasManyThroughRelation::make(‘taxonomies’) ->recordTitleAttribute(‘name’) ->filterByRelationQuery(function ($query) { $query->whereNotNull(‘type_of’); }), ]; } I need the code in its latest version. This is a part of code from AI. laravel laravel-filament 1
How to hide the delete icon from a specific item or a Repeater of laravel filament?
I’m building a dashboard using the filament library and I’m liking it so far. I have a repeater that allows me to add new languages to the app and I want to hide the delete icon if the current item is the default language. According to the documentation, the delete icon is controlled with the ->delectable()
method. So basically I need to check if the current item value is different than the default language but I’m unable to get the current item value: