Form select relationship help
I have a user which can have a
resource_no
, that points to the resources table however we do not use the ID, it points to the resources no
column, however my select inserts the ID, can anyone help?
I tried changing the name of the select to use the dot notation to resource.no
, but when I do that I get Unknown column 'resource' in 'field list'
4 Replies
you should've setup the relation in the model class to set the primary key and the relation name
Hi @Mohamed Ayaou so in my User class I have this :
And in my Resource class I have this:
The
resource_no
as I say is on the users table, and points to the no
of the resources table
its also nullable if that makes a difference? although no error is thrown so probably notnot sure from the first insight but try to
dd($user->resource)
, dd($user->resource_no)
, and dd($user->resource->no)
where should i try the dump?
if i change the db value to the
no
instead of the id
, in my table of users, a text column resource.name
works, so i imagine the relationship is ok?
the has one and belongs to were the wrong way around!
thanks for your help