facet-acq / post-award

Application Service Supporting Entitlement and Administration of Government Procurement Actions
BSD 3-Clause "New" or "Revised" License
5 stars 3 forks source link

Assigning Parties to a Role within an Agreement #44

Closed djfurman closed 6 years ago

djfurman commented 6 years ago

Pull Request

Fixes #40

Purpose

Swap out party relationship to many-to-many style with pivot table lookups.

Approach

Using eloquent relationships I was able to make the database models conform to a simple PHP syntax, but these will need to be optimized for caching as it generates a large number of database hits.

Need to keep an eye on the indexing required on the pivot table as well to ensure that it's running appropriately.

Lessons Learned