Если я уже использую PDO, то в чем преимущество дальнейшего абстрагирования запросов SELECT в Eloquent ORM Laravel?
Рассмотрим следующие запросы READ и WRITE: Читать // Retrieves a person (and their active game score if they have one) $sql = "SELECT CONCAT(people.first_name,' ',people.last_name) as 'name', people.uniform as 'people.uniform', games.score as 'games.score' FROM my_people as people LEFT JOIN my_games as games ON(games.person_id = people.id AND games.active = 1) WHERE people.id = :id"; $results = […]