Laravel 9.18 Released | Laravel News
The Laravel team released 9.18 jam-packed with amazing features and quality-of-life improvements. Let's look at the high-level details of the standout features now available in Laravel 9! Laravel 9.18.0 is out today. Naturally, it has some *fire* features that I think
Validate Your App on the Frontend With Laravel Dry Run Requests
The Laravel Dry Requests package checks if your requests would pass validation if you executed them normally. Think of it as the equivalent of a --dry-run CLI flag for request validation. Using this package, you can hit the endpoint users
Getting started with Laravel Scout and Meilisearch
We have all needed to add some sort of search to our applications before, and a lot of the time we leaned towards Algolia and Laravel Scout - because it worked out the box and achieved great results. But there
Running PHPStan on max with Laravel
Over the last few years static analysis in PHP, and more specifically Laravel, has become more and more popular. With more people adopting it into their Software Delivery Lifecycle, I thought it would be a good time to write a
Build realtime infrastructure in-house or outsource to the experts?
It's a tough question for many engineering decision makers. Many times, the easiest way to make a decision is to learn from peer experiences. This is why Ably surveyed over 500 engineering leaders: to understand the challenges they faced when building
ORM Caching Package for Laravel
LaraCache is an ORM-based package for Laravel to create, update and manage cache items based on model queries. Using this package, you can cache queries that you use heavily throughout your application. 1use MostafaznvLaraCacheTraitsLaraCache; 2 3class Article extends Model 4{
Running SingleStore on Apple Silicon
This guide will take you through installing SingleStore on your Apple Silicon machine for development purposes. SingleStore are working on building official support for development-only workloads, meaning that this solution involving UTM/QEMU is not officially tested or supported by SingleStore. SingleStore
A Collection of ISO standards as PHP Enums
The PrinsFrank/standards package is a collection of standards as PHP Enums, such as ISO3166, ISO4217, ISO639, and more. Specifically, this package includes support for common language ISO codes, country codes, and currencies. For example, ISO 3166 deals with country code standards,
Supercharged pipelines for Laravel | Laravel News
The chefhasteeth/pipeline package for Laravel adds a few unique features to the built-in pipeline functionality. For example, this package has a withTransaction() method, which will run this pipeline within a database transaction and automatically commit (or roll back) depending on
API Integrations using Saloon in Laravel
We have all been there, we want to integrate with a 3rd party API in Laravel and we ask ourselves "How should I do this?". When it comes to API integrations I am no stranger, but still each time I