Super Quick Tutorial: Laravel Domain Routing with new Routing File

Another Super Quick Tutorial, this time looking at domain routing for your application. Maybe you’ve got some specific admin functionality or client functionality or something you want to route, without clogging up your route files (which is an occupational hazard of working with Laravel). The Problem / Situation You want a separate route file for …

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 …