In Laravel can i create oneToMany relation with junction table instead of belongsToMany?
In Laravel can I create oneToMany relations with junction tables instead of belongsToMany? Tables: Users: id, name, etc Table1: id, name, etc Table2: id, name, etc Table3: id, table1_id, table2_id, currentActive, lastActive [junction table with pivot columns] Table4: id, table3_id,…