Level 7
You can read more about ORM from here:
https://stackoverflow.com/questions/1279613/what-is-an-orm-and-where-can-i-learn-more-about-it
Quote:
An ORM library is a completely ordinary library written in your language of choice that encapsulates the code needed to manipulate the data, so you don't use SQL anymore; you interact directly with an object in the same language you're using.
I think this describes it pretty well overall.
I have used medoo, and it works pretty well, but laravels Eloquent is way easier to work with, especially when it comes to relationships with other tables.