Managing Pivot Data with Laravel Eloquent

Originally published at: Managing Pivot Data with Laravel Eloquent - Server Side Up

Laravel provides the most beautiful Object Relational Mapping systems I’ve ever used with Eloquent. Eloquent has so many powerful features making working with a database so enjoyable! One of my favorite features of Laravel Eloquent is the many-to-many relationship structure. When I had to write raw SQL, I always hated many-to-many relationships. With Eloquent, they…