Ngannv
Ngannv
FFilament
Created by Ngannv on 3/22/2025 in #❓┊help
Call to a member function getRelated() on null
I am encountering an issue while using Filament and Eloquent in Laravel. Specifically, I am trying to display the district.name column from the Homestays table, but when there is a record in the homestays table with district_id=1000 and there is no corresponding record in the district table with id=1000, I get the following error: Call to a member function getRelated() on null Here’s the code I’m using: TextColumn::make('district.name') ->label(__('db.district')) The issue: When the district_id in the homestays table does not have a matching record in the district table, I get the error mentioned above. I want to know if there’s a way to handle this scenario without causing an error, for example, by displaying a default value or skipping records without related data? Additional information: I am using an Eloquent belongsTo relationship between Homestay and District. Records in district_id are not always valid or existing. Thanks in advance for any help!
4 replies
FFilament
Created by Ngannv on 11/16/2024 in #❓┊help
How to sell source Filament on Market?
Can I build a project using Filament and sell it on marketplaces like codecanyon.net? Has anyone sold on this marketplace?
1 replies
FFilament
Created by Ngannv on 4/4/2024 in #❓┊help
bug list recall when show modal
When I called the Modal form to see the details of the record, I saw that the list was also called to the database to get paging, how to fix this.
2 replies
FFilament
Created by Ngannv on 2/1/2024 in #❓┊help
how to use Rich Editor in blade file?
I have a custom view file called output.blade.php In this blade file, I want to show the content using RichEditor, what should I do? Please help
2 replies
FFilament
Created by Ngannv on 1/9/2024 in #❓┊help
select searchable || multiple || native=false call duplicate ajax
I have a form with a select tag and a repeat. The select tag has allowHtml and searchable(true) attributes. -- Every time I add an item in repeat, I see it calls ajax update twice => I think this is an error. When I remove the searchable(false) attribute of select, it calls ajax update once
2 replies
FFilament
Created by Ngannv on 12/26/2023 in #❓┊help
How to get active tab in submit form
Instead of dividing into multiple forms and putting them in each tab, I have 1 form with multiple tabs. And when I submit, I want to know which tab I'm submitting to, what should I do? Please help me!
6 replies
FFilament
Created by Ngannv on 12/22/2023 in #❓┊help
How to click multiple times on the screen.
I have 1 form + 1 action button of that form (called button A). Below the form there is a list, each item has a delete button (I don't use a table) => called button B(x) When I press button A, I cannot click the B(x) buttons. I have to wait for a response from Button A before the other buttons can be clicked. What do I need to do to improve this problem, or is there any keywords about this? Please help
2 replies
FFilament
Created by Ngannv on 12/20/2023 in #❓┊help
How to call multiple functions at the same time in 1 screen
It seems that Filament is performing actions synchronously, sequentially in the order they are called and must wait for each other. (I don't know if this problem is with Filament or LiveWire?) In my case, the scenario is that I have 1 Custompage screen and custom View. Above is the form, below is the list of images It took me about 30 seconds to submit the form During that time, I want to see the detailed modal of the images below, but I can't. I have to wait for the form submission to finish. This makes the experience not good, I would like everyone to give me feedback on how to handle it. Thank you!
2 replies
FFilament
Created by Ngannv on 12/17/2023 in #❓┊help
How to set Height or Max height for RickEditor?
I'm wanting to set the max height and elevation for RichEditor The goal is that if the content is long, a scroll bar will appear, but don't know how? Please help me! Forms\Components\RichEditor::make("content") ->disableToolbarButtons(['attachFiles'])->....
5 replies