Optimizing Queries with Memoization - Laravel In Practice EP9 https://laravel-news.com/optimizing-queries-with-memoization-laravel-in-practice-ep9
Laravel News
Optimizing Queries with Memoization - Laravel In Practice EP9 - Laravel News
Three identical cache calls is 24ms wasted. Cache::memo() stores results in memory during requests, turning repeated 8ms hits into instant lookups. Eliminate duplicate cache access with just a few lines.
β€4
Prevent Duplicate Files with the Dedupler Package for Laravel https://laravel-news.com/prevent-duplicate-files-dedupler-package-for-laravel
Laravel News
Prevent Duplicate Files with the Dedupler Package for Laravel - Laravel News
Dedupler is a Laravel package that automatically prevents duplicate files using SHA-1 hashing and provides a polymorphic API for managing your attachments.
Concurrency Control in Laravel 12.36, Inertia View Transitions https://laravel-news.com/laravel-12-36-0
Laravel News
Concurrency Control in Laravel 12.36, Inertia View Transitions - Laravel News
The Laravel team released version 12.36.0 this week, adding concurrency control for HTTP pool and batch methods, introducing two Eloquent collection methods, and more.
π₯3π1
MongoDB Transactions in Laravel https://laravel-news.com/mongodb-transactions-in-laravel
Laravel News
MongoDB Transactions in Laravel - Laravel News
Learn how to use MongoDBβs multi-document ACID transactions in Laravel to build fast, flexible, and reliable applications. This guide covers setup, real-world examples, best practices, and when to use transactions versus embedded documents.
π3π₯2β€βπ₯1
Define LLM JSON Schemas in Laravel With Forerunner https://laravel-news.com/define-llm-json-schemas-in-laravel-with-forerunner
Laravel News
Define LLM JSON Schemas in Laravel With Forerunner - Laravel News
Forerunner for Laravel is a package that provides a migration-inspired API for defining JSON schemas that ensure your LLM responses are perfectly structured every time.
π1
Inspect Composer and NPM Dependency Changes With Whatsdiff https://laravel-news.com/whatsdiff
Laravel News
Inspect Composer and NPM Dependency Changes With Whatsdiff - Laravel News
Whatsdiff is a CLI tool that shows what has changed in your project's dependencies after a composer update or an npm update.
β€2
Fix Static Analysis Issues Automatically with CodeKudu https://laravel-news.com/fix-static-analysis-issues-automatically-with-codekudu
Laravel News
Fix Static Analysis Issues Automatically with CodeKudu - Laravel News
CodeKudu helps busy Laravel teams like yours by automatically fixing static analysis issues across your codebase. Connect your GitHub repository, set your pull request preferences, and let us find and fix bugs across your app. Get started for free at codekudu.com.
β€4
Add Real Time Search to Your Laravel App in Minutes with SerpApi https://laravel-news.com/serpapi
Laravel News
Add Real Time Search to Your Laravel App in Minutes with SerpApi - Laravel News
Instantly access real-time search data from Google, Amazon, and more β directly inside your app with SerpApi. Build AI agents that retrieve fresh web answers, monitor trends, and more.
β€3π1
https://instantview.telegram.org/templates/laravel-news.com/
Please open Telegram to view this post
VIEW IN TELEGRAM
πΎ3β€βπ₯2π2π1
TikAPI SDK is PHP and Laravel Package for the TikAPI https://laravel-news.com/tikapi-sdk-is-php-and-laravel-package-for-the-tikapi
Laravel News
TikAPI SDK is PHP and Laravel Package for the TikAPI - Laravel News
The TikAPI SDK is a PHP and Laravel package for the unofficial TikTok API. This SDK provides a clean, scalable, and framework-agnostic wrapper for the TikAPIβmaking it easy to fetch TikTok data via PHP or Laravel.
β€βπ₯6π₯2π2
Cache Smart Invalidation - Laravel In Practice EP10 https://laravel-news.com/cache-smart-invalidation-laravel-in-practice-ep10
Laravel News
Cache Smart Invalidation - Laravel In Practice EP10 - Laravel News
Your cache is fast, but it's lying. Laravel's flexible cache creates three keys per entry - and if you only clear one, stale metadata lingers. In this video, I show you how to build complete cache invalidation that clears both your memoization and flexibleβ¦
β€2
Background Queue Connection in Laravel 12.37 https://laravel-news.com/laravel-12-37-0
Laravel News
Background Queue Connection in Laravel 12.37 - Laravel News
The Laravel team released version 12.37.0 this week, with new background queue driver, a Factory insert method, a ucwords() string method, and more.
π4β€1
Laravel Fluent isEmpty and isNotEmpty Methods https://laravel-news.com/fluent-isempty
Laravel News
Laravel Fluent isEmpty and isNotEmpty Methods - Laravel News
Laravel's Fluent class now provides isEmpty and isNotEmpty methods for direct boolean checks on whether instances contain data, removing the need for array conversion or property inspection workarounds.
β€2π1
The Practical Guide to Laravel + Nova on OpenAI Codex Web https://laravel-news.com/the-practical-guide-to-laravel-nova-on-openai-codex-web
Laravel News
The Practical Guide to Laravel + Nova on OpenAI Codex Web - Laravel News
The Practical Guide to Laravel + Nova on OpenAI Codex Web Scripts, screenshots, and gotchas for secure private Composer auth in Codex environment containers.
β€3
Early Bird Tickets are out for Laracon EU - Secure Your Spot by Nov 22! https://laravel-news.com/laracon-eu-early-bird-tickets
Laravel News
Early Bird Tickets are out for Laracon EU - Secure Your Spot by Nov 22! - Laravel News
Early Bird tickets for Laracon EU are now available, but only until November 22nd.
β€4π€―1
Trying a new live preview: https://t.iss.one/iv?url=https://laravel-news.com/cache-smart-invalidation-laravel-in-practice-ep10&rhash=8fee474e8a1638
Laravel News
Cache Smart Invalidation - Laravel In Practice EP10
Your cache is fast, but it's lying. Laravel's flexible cache creates three keys per entry - and if you only clear one, stale metadata lingers. In this video, I show you how to build complete cache invalidation that clears both your memoization and flexibleβ¦
β€2π2π2π’1
Cloudflare Turnstile versus CSRF tokens https://t.iss.one/iv?url=https://laravel-news.com/cloudflare-turnstile-versus-csrf-tokens&rhash=8fee474e8a1638
Laravel News
Cloudflare Turnstile versus CSRF tokens
Discover how Laravel Shift improved load times and reached 98% page caching by replacing CSRF tokens with Cloudflare Turnstile on public forms. Learn how this approach boosts performance, reduces spam, and keeps pages cacheable in Laravel applications.
π2π1
Seems it didnβt work. π Here is the main link: https://laravel-news.com/cloudflare-turnstile-versus-csrf-tokens
Laravel News
Cloudflare Turnstile versus CSRF tokens - Laravel News
Discover how Laravel Shift improved load times and reached 98% page caching by replacing CSRF tokens with Cloudflare Turnstile on public forms. Learn how this approach boosts performance, reduces spam, and keeps pages cacheable in Laravel applications.
β€1
Cache Pre-warming Explained - Laravel In Practice EP11 https://t.iss.one/iv?url=https://laravel-news.com/cache-pre-warming-explained-laravel-in-practice-ep11&rhash=8fee474e8a1638
Laravel News
Cache Pre-warming Explained - Laravel In Practice EP11
Learn how to eliminate cold cache delays in Laravel by pre-warming your cache before users ever hit your app. This episode shows how to automate cache warming, integrate it into deployments, and achieve sub-millisecond response times every time.
β€4