Manage AI Prompts in Your Laravel App with Markdown and Blade https://laravel-news.com/manage-ai-prompts-in-your-laravel-app-with-markdown-and-blade
Laravel News
Manage AI Prompts in Your Laravel App with Markdown and Blade - Laravel News
The Prompt package for Laravel by @chimit provides a simple way to manage your AI prompts in Markdown files, leveraging the power of Blade.
👍1💩1
Laravel Strict Validation for Type Checking https://laravel-news.com/strict-validation
Laravel News
Laravel Strict Validation for Type Checking - Laravel News
Laravel's strict validation parameters for numeric, boolean, and integer rules enforce exact type matching rather than allowing PHP's type coercion, preventing string values from passing as proper types during validation.
❤6
Image Manipulation in Laravel With Glide https://laravel-news.com/image-manipulation-in-laravel-with-glide
Laravel News
Image Manipulation in Laravel With Glide - Laravel News
Glide for Laravel is a package that provides on-the-fly image manipulation using League/Glide. It offers Blade components for generating responsive images, URL signing for security, and seamless integration with Laravel's filesystem and caching layers.
❤5
Detect Packages & Approaches in use within a project with Laravel Roster https://laravel-news.com/laravel-roster
Laravel News
Detect Packages & Approaches in use within a project with Laravel Roster - Laravel News
Detect packages & approaches in use within a Laravel project with Roster
Claude Code Agent Now Built Into PhpStorm AI Assistant https://laravel-news.com/claude-code-phpstorm
Laravel News
Claude Agent Now Built Into PhpStorm AI Assistant - Laravel News
The new Claude Agent is now seamlessly integrated into JetBrains IDEs via the AI chat and included in the JetBrains AI subscription. No extra plugins, no extra subscriptions—just advanced AI coding assistance right inside your IDE.
🤮5❤3👍2
Elevating SQL Efficiency - Laravel In Practice EP7 https://laravel-news.com/elevating-sql-efficiency-laravel-in-practice-ep7
Laravel News
Elevating SQL Efficiency - Laravel In Practice EP7 - Laravel News
our PHP is doing database work. Loading 10,000 orders into memory to sum them up is like using Excel to count grains of rice. Move those calculations to SQL where they belong - let SUM() and COUNT() do the heavy lifting in milliseconds, not megabytes. This…
❤2🕊1🥴1
PHP 8.5 Introduces a New URI Extension https://laravel-news.com/php-85-introduces-a-new-uri-extension
Laravel News
PHP 8.5 Introduces a New URI Extension - Laravel News
PHP 8.5 introduces a new standards-compliant URI parser for both RFC 3986 and the WHATWG URL standards. Learn how you can use PHP's built-in URI standards to generate safe, compliant URLs.
👍7🔥4❤3
Failover Queue Driver in Laravel 12.34 https://laravel-news.com/laravel-12-34-0
Laravel News
Failover Queue Driver in Laravel 12.34 - Laravel News
The Laravel team released version 12.34.0 this week, introducing a failover queue driver, full-text database search improvements in Laravel Scout, deferring an HTTP client batch, and more.
🔥6❤1👍1
JetBrains State of PHP 2025 https://laravel-news.com/jetbrains-state-of-php-2025
Laravel News
JetBrains State of PHP 2025 - Laravel News
The State of PHP 2025 examines how developers use, prefer, and rely on PHP, showing how this long-standing web language continues to modernize through new frameworks, improved tooling, and AI-assisted workflows.
👍4💩3❤1
Support for Closures in Constant Expressions in PHP 8.5 https://laravel-news.com/support-closures-in-constant-expressions-in-php-8-5
Laravel News
Support for Closures in Constant Expressions in PHP 8.5 - Laravel News
PHP 8.5 introduces support for closures in constant expressions, making it possible to define a default attribute value as a Closure, among other use-cases. Learn how this update also enables closures to be passed to PHP attributes.
🤔3🤡2🔥1
Boosting App Speed with Flexible Caching - Laravel In Practice EP8 https://laravel-news.com/boosting-app-speed-with-flexible-caching-laravel-in-practice-ep8
Laravel News
Boosting App Speed with Flexible Caching - Laravel In Practice EP8 - Laravel News
Stop making users wait for cache rebuilds. Laravel 12's flexible caching serves instant responses with stale data while refreshing in the background. Learn the stale-while-revalidate pattern that keeps your dashboard under 10ms even during cache updates.…
❤2
Blocking invalid requests to your Laravel application https://laravel-news.com/blocking-invalid-requests-to-your-laravel-application
Laravel News
Blocking invalid requests to your Laravel application - Laravel News
Stop wasting server resources on junk traffic. Learn how to block invalid requests to your Laravel app using Cloudflare rules, route whitelisting, and smart security practices.
👍8⚡1
PHP Pie with James Titcumb https://laravel-news.com/php-pie-with-james-titcumb
Laravel News
PHP Pie with James Titcumb - Laravel News
Eric L. Barnes sits down with James Titcumb to discuss PHP Pie, a new project from the PHP Foundation aimed at modernizing how developers build and run PHP applications.
❤2
Interactively Search and Delete Cache Keys in Laravel with Cache UI https://laravel-news.com/cache-ui-for-laravel
Laravel News
Interactively Search and Delete Cache Keys in Laravel with Cache UI - Laravel News
The Cache UI package for Laravel provides an interactive CLI command to list, search, and delete individual cache keys without requiring the entire cache to be purged. It supports multiple cache drivers, including Redis, File, and Database.
❤1
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