Obsolete page
This page requires updating for UserFrosting 6. You can help by contributing on GitHub.
Chapter 14
The Database and ORM Layer
UserFrosting uses Laravel's Eloquent component to provide a convenient abstraction layer on top of your database. This allows you to quickly manipulate the database from within your controllers without needing to write tedious, repetitive queries each time.
We also discuss how to create database migrations, allowing you to easily set up your database tables, and database seeds, allowing your to populate the database with default values.