DEV Community

Discussion on: Making Api CRUD(Create,Read,Update,Delete) with Laravel 8 n API Authentication with sanctum

Collapse
 
dgloriaweb profile image
dgloriaweb

Hi, forgot how to add a joined table to the index function pls help!!
This doesn't work

return Question::all()
->with(compact('language'));

Collapse
 
tanzimibthesam profile image
Tanzim Ibthesam

Can you explain your models and relations

Collapse
 
dgloriaweb profile image
dgloriaweb

Oh, thanks, I've figure it out.

return Question::with('language')->get();