New Eloquent Relation Existence Methods in Laravel 11.37
Last week the Laravel team released v11.37, which includes new Eloquent relation methods, an option to ignore case with Str::is(), adding the Dumpable trait to a Uri instance, and more. Add Dumpable...
View ArticleOptimizing Large Data Delivery with Laravel Streaming Responses
Laravel's streaming response feature enables efficient handling of large datasets by sending data incrementally as it's generated, reducing memory usage and improving response times....
View ArticleDummy - Generate PHP class instances populated with dummy data using Faker
Dummy is a package created by Steve Bauman that can be used to generate PHP class instances populated with dummy data using Faker. This can be really useful in generating instances of any class (not...
View ArticleImmutable Value Objects in PHP and Laravel With the Bags Package
Bag is a PHP and Laravel package for Immutable Value Objects, inspired by Spatie's laravel-data package. It can help you create immutable objects to encapsulate your data in a type-safe way with data...
View ArticleString Manipulation Made Easy with Laravel's AsStringable Cast
Laravel's AsStringable cast transforms model attributes into Stringable objects, providing fluent access to Laravel's powerful string manipulation methods directly from your model attributes. When...
View ArticleRecurr is a PHP library for working with recurrence rules for calendar dates
As the new year begins, many of us set recurring goals—daily workouts, weekly meetings, or monthly reflections. Tracking these commitments in life can be tricky, but managing them programmatically...
View ArticleManage Metadata on Laravel Eloquent Models with JSON Support
The Laravel Model Metadata package is designed to manage metadata in your Eloquent models with JSON support for multiple data types. With this package, you can easily attach, manage, and query your...
View ArticleGlobal View Data Management in Laravel
Laravel's View::share method provides a straightforward way to make data available across all views in your application, perfect for handling global settings, user preferences, or common UI elements....
View ArticleGGH is a Lightweight CLI to Recall Your SSH Sessions
GGH is a small CLI application that recalls your SSH sessions and searches your SSH configuration file. It's a lightweight CLI wrapping SSH commands (you must have SSH installed), but it does not...
View ArticleDynamic API Response Control in Laravel Resources
Laravel's API Resources provide elegant methods for conditionally including attributes in your responses, allowing you to create flexible and efficient APIs that adapt to different contexts and...
View ArticleThe definitive Guide to Webhooks in Laravel
Master webhooks in Laravel with this definitive guide. Learn setup, security, event handling, and more to build powerful real-time integrations. The post The definitive Guide to Webhooks in Laravel...
View ArticlePeckPHP - A CLI tool designed to identify wording or spelling mistakes in...
Peck is a powerful CLI tool designed to identify wording or spelling mistakes in your codebase. It can inspect folder names, file names, method names, comments, and more and it will fit naturally into...
View ArticleA Laravel Package to Use the Deepseek API With V3 AI Models
The DeepSeek Laravel package makes using the DeepSeek v3 AI models in your projects easy with PHP and Laravel. The post A Laravel Package to Use the Deepseek API With V3 AI Models appeared first on...
View ArticleGenerating Sequential Laravel Collections
Explore Laravel's times method for generating sequential collections and learn to create numbered sequences and calculated datasets, perfect for time slots, pagination, and other ordered data...
View ArticleLaravel Debounce
Laravel Debounce is a package that gives you a debounce effect on jobs, notifications and artisan commands with a nice report of occurrences. The post Laravel Debounce appeared first on Laravel News....
View ArticleLua - Laravel powered open-source URL shortener
lua.sh is a next-generation, scalable, and open-source URL shortener built with the modern stack of Laravel, Vue 3, and Inertia.js. Lua is designed to be fast, flexible, and an excellent choice for...
View ArticleDevDb - VS Code database management extension launches v2
A lightweight VS Code extension that auto-loads your database and provides affordances from your database to aid development and debugging. The post DevDb - VS Code database management extension...
View ArticleA Fluent Email Validation Rule Added in Laravel 11.38
This week, the Laravel team released v11.38, which includes a fluent Email validation rule, the ability to retrieve a form request or fluent value as an array, a finally() pipeline method, and more....
View ArticleCreate GitHub Issues from Exceptions and Logs in Laravel
The laravel-github-monolog package automatically creates GitHub issues from exceptions in your Laravel applications. This package is meant for smaller apps without the need for full-featured logging...
View ArticleHandling Process Synchronization with Laravel Cache Locks
Learn how to manage process synchronization in Laravel using Cache locks. Discover how to prevent race conditions and handle concurrent operations safely in distributed systems. The post Handling...
View Article