PHP
Multi-Input Sorcery And Other Laravel Livewire Tips
Daniel Coulbourne shares some cool Livewire insights.
Daniel Coulbourne shares some cool Livewire insights.
By thinking outside of the box, you can often get much faster database performance by splitting values across multiple database columns. Read more
A clever use of MySQL indexes and generated columns to make blazing fast geolocation searches. Read more
In this series, I show you new features and improvements to the Laravel framework since the original release of version 8. This week is about the Database and Eloquent features in Laravel 8. Read more
The Laravel team released so many great Laravel 8.x updates over the last year, it’s incredible! I wrote a series of blog posts highlighting some of the best new features and improvements. Today: Collections. Read Read more…
The Visitor Pattern opens up your entities to extension without changing them (much); and keeps the code separate. Read more
In your tests, you might have used assertDatabaseHas to make sure that a model actual is persisted. it(‘will not delete a user’, function() { $user = User::find(1); // perform some logic of which you want Read more…
Bugs caused by race conditions can be a huge source or frustration. They are difficult to identify and often difficult to remedy. Read more
Here are a few best practices for working with a large tables. Read more