Shawn🤦‍♂️Lindstrom
shawnlindstrom.bsky.social
Shawn🤦‍♂️Lindstrom
@shawnlindstrom.bsky.social
Husband, father, stoic, and full stack software developer #Laravel #PHP #Vue #ReactNative #AWS
You're damn right I am!
December 10, 2024 at 6:02 PM
8.3 years ago, we adopted @sentry.io and never looked back. Sentry has been a joy to use and fun to watch grow and expand over the years.
December 10, 2024 at 5:48 PM
It's 3:50 AM. My canvas, the web. My brush, Laravel.
November 22, 2024 at 8:50 AM
The main thing to understand is that you are passing the $validated array (or whatever you pass through) to each class in the pipeline and modifying or appending values as you go for use in the next class/step in your pipeline. Here we add the account key to our $validated array after creation.
November 12, 2024 at 10:03 PM
Laravel Pipelines can clean up a multi-step process and make your code more testable. @ashallendesign.bsky.social has a nice guide here: ashallendesign.co.uk/blog/laravel... The image shows a somewhat contrived example of refactoring to pipelines.
November 12, 2024 at 10:03 PM
And on a related note, here's @taylorotwell.bsky.social reminding us to build each other up. Something you'll rarely get from the dogmatic crowd.
October 31, 2024 at 6:13 AM
Classic #Laravel Tip: Many things in Laravel are macroable. When you wish X could do Y, like why isn't there a ->last() method on the Query Builder (so you don't have to do ->latest()->first()), you can write a macro and make it happen.
October 20, 2024 at 11:54 PM
"Efficient MySQL Pagination Using Deferred Joins". Come for the efficient pagination. Stay for the composite index education. aaronfrancis.com/2022/efficie...
October 20, 2024 at 3:59 AM
Classic #Laravel Tip: Scheduled tasks run sequentially in the order they are defined. To avoid long-running commands from causing delayed execution of subsequent tasks, either convert them to queued jobs or run those commands in the background. See: laravel.com/docs/11.x/sc...
October 20, 2024 at 12:47 AM
If you want to use #Twilio in your #Laravel applications, forget packages. Just create a service provider for the Twilio #php SDK. Here's a gist to get you started: t.co/xpigZjhlsz
October 19, 2024 at 6:01 AM
If PHP is dead, how come #Laravel keeps growing?
October 19, 2024 at 12:09 AM
Classic #Laravel Tip: The route() helper has a third parameter. If you pass false, it will return the relative url/path of the route.
October 18, 2024 at 9:09 PM