2024‘s Thoughts
✦ October
Conquering CORS Errors in Laravel: A Comprehensive Guide
CORS errors are really a rite-of-passage into becoming an expert programmer, we've all run into them. Here's a comprehensive overview to fixing CORS errors in Laravel
Queue the work of hydrating a Laravel session
Ever needed to offload the work of hydrating Laravel session data into a queue worker? Here's how...
Data Providers: A Guide To Using Generators Within Pest Tests
Passing static data into one's PHPUnit tests is generally straightforward. When you want or need Laravel booted up first though, it gets a bit more tricky. Here's a rundown on how to do it.
Eloquent Models 🤝 PHP Constants
For those out there that are working with codebases that have been around for some time, you've likely come across databases where the column names don't represent all the beautiful snake-cased columns you see throughout tutorials and videos online. Let's address this...