I have a question.
Foe example, there are two tables.
table_a:
int id_a pirmary_key
string foo_name
table_b
int id_b primary_key (only inserting value of id_a)
If I show data table of table_b, and I set foo_name in getFilters() method, how do I code to search foo_name?
Please login or Register to submit your answer
Hello,
What is the relations between these tables ? , I mean laravel relations
In my project, table_a is master table, and table_b has data to apply particular condition for data of table_a.
In table_b, to add data and to delete data are done by user operation of GUI.