Ngannv
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
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
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
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
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