🧀 #NewInLaravel 12.14.0
You can now use useCurrent() for date and year columns in your migrations, just like you already do with timestamp.
No more hacking default values with raw SQL or now().
#LaravelTips
2
0
0
0
🧀 #NewInLaravel 12.14.0
You can now use useCurrent() for date and year columns in your migrations, just like you already do with timestamp.
No more hacking default values with raw SQL or now().
#LaravelTips
🧀 #NewInLaravel 12.14.0
New utility method in Arr class: Arr::from(): Converts various types (arrays, objects, WeakMap, Traversable, etc.) into arrays. It also handles special cases like enums and WeakMap.
#Laravel
🧀 #NewInLaravel 12.14.0
Laravel's Context object just got new powers:
except() and exceptHidden() to clean up context data before logging or sharing it.
This gives precise control over what’s kept in the context, great for privacy, debugging, and clear logs.
#LaravelTips