https://dev.to/sumyya_khan Laravel includes Eloquent, an object-relational mapper (ORM) that makes it pleasant to interact with your database.
Exit fullscreen mode #chain-conditional-clauses-to-the-query-without-writing-ifelse-statements Chain conditional clauses to the query without writing if-else statements
Exit fullscreen mode #select-specific-columns Select specific columns
// Select specified columns from all employees $employees = Employee::select(['name', 'title', 'email'])->get(); // Select specified columns from all employees $employees = Employee::get(['name', 'title', 'email']); Exit fullscreen mode #compare-the-values-of-two-columns Compare the values of two columns