Batman
Select::make('category_id') VS. Select::make('Category')
Yes, as stated above, I am using ‘category_id’ as in the documentation. But ran across this and wondered why it worked and just stopped. It was a tutorial that I had previously went through that had some things I remember doing and revisited!the code and project. Was looking through it yesterday and ran the project and all was working. Started it up today and it didn’t work. So it bothered me as to why.
17 replies
Select::make('category_id') VS. Select::make('Category')
I’ll have to check on the case sensitivity.
And yes, I agree, better to be explicit.
Also just one of those things that I wanted to get to the bottom of. If it wouldn’t have worked to begin with I wouldn’t have thought twice about it, but one of those, worked yesterday, but not today, so what’s going on type of things.
17 replies
Select::make('category_id') VS. Select::make('Category')
Correct, I understand that’s the correct way to do it.
What I’m trying to fully understand is why using ‘category’ works (resolves) the relationship correctly when updating the field, but not when creating.
It’s not an issue as I am using the category_id. But it is something I ran across and was bugging me why it was working, then just stopped.
So, I was trying to find more clarification on why it seems to be resolving the relation on both creating and updating, and now it’s only resolving only on updating.
17 replies
Select::make('category_id') VS. Select::make('Category')
It’s an issue of not properly creating the relation on creation, not trying to resolve a relation on null. It used to properly create the model entry (correctly inserting the value into ‘category_id’) but doesn’t anymore. It now looks for a field called ‘Category’ instead of using the relationship. This only happens on create, not update.
17 replies
Are anonymous functions evaluated before ->assertFormField*?
Yeah, I'm seeing some differences between the two repositories which I'm sure will help some of these anomalies. I'm still trying to figure out why
->disabled(fn () => true)
isn't returning as disabled.29 replies