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
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
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
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
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
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