Super Quick Tutorial: Using Laravel Configurations stored in the Database

The Problem / Situation You want to store some configurations from the UI, so that your system can be used to do something at runtime. Maybe it’s rate limits, or site titles, or something. The Super Quick Solution Build a storage mechanism (probably a migration and model) to store your tables. I’ll assume you’ve created …