PHP 8.4: Release Date and Features, August 2024
Efficiently Handling Large Data Retrievals in PHP: Solving Memory Limit Issues; Understanding Policies in Laravel; and Build SSH Apps with PHP and Laravel Prompts
PHP
📚 PHP 8.4: Release Date and Features, August 2024
A few months before the final release — I want to give a second overview to PHP 8.4. The following blog post will address changes to PHP 8.4 that are not addressed in the first blog and Property Hooks.
📚 Efficiently Handling Large Data Retrievals in PHP: Solving Memory Limit Issues
In specific cases, retrieving and processing large datasets from a source can present significant challenges. The volume of data can be so large that handling it efficiently becomes crucial to maintaining the application’s performance.
📚 PHP Iterators for walking through data structures
In this tutorial, we will explore PHP iterators and how to use them for walking through various data structures.
📚 LAMP docker installation automation script in bash
In order to automate the process of installing all web applications required to run a LAMP server, the following script is writing for that exact purpose.
📚 PHP 8.4.0 Alpha 4 available for testing
The PHP team is pleased to announce the second testing release of PHP 8.4.0, Alpha 4. This continues the PHP 8.4 release cycle, the rough outline of which is specified in the PHP Wiki.
Laravel
📚 Understanding Policies in Laravel
This post will focus more on Laravel Policies, their setup, how they are used, and when to use them for what type of situation.
📚 Enhancing User Experience with Livewire’s wire:transition.scale
In this post, we’ll explore how to use this directive to add smooth scaling transitions to your Livewire components.
📚 Build SSH Apps with PHP and Laravel Prompts
The ssh-php project by Sam Carré is a ridiculously simple starting point for building Text-based User Interfaces (TUIs) in PHP over SSH.
📚 How to Solve 'Class NumberFormatter not found' in Laravel
The error Class 'NumberFormatter' not found in Laravel typically occurs when the intl extension is not installed or enabled in your PHP environment. The NumberFormatter class is part of the intl (Internationalization) extension.
📚 How to Create a Test Case in Laravel Using Pest
In this blog post, we'll walk through creating a test case in Laravel using Pest, focusing on an example where we test the creation of an Employer record, including uploading a logo.
📚 Setting Up Authentication in Laravel
This guide will walk you through setting up authentication in a Laravel application.
📚 Laravel 11 Find Nearest Location By Latitude and Longitude
Here, we’ll learn to get the nearest location using latitude and longitude in laravel 11. You can give latitude and longitude and find the location in laravel 11.
📚 Use Laravel's Built-in SetUp Hooks for Application Test Traits
When writing feature tests in Laravel, the base TestCase class inherits the framework's TestCase class. In this class, is the base setUp template is called in PHPUnit.
📚 Assert the Exact JSON Structure of a Response in Laravel 11.19
The Laravel team released v11.19 this week, including asserting the exact JSON structure, a whereNone query builder method, a Number::trim() method, HTML assertion convenience methods, and more.
📚 Mastering Interactive UIs with Livewire’s wire:click.prevent
In this post, we’ll explore how to use this directive to create smooth, JavaScript-free interactivity in your Laravel applications.
📚 Boost your app’s speed with Laravel Caching
In this blog post, we’ll explore how to use Laravel’s Cache::remember() method to store and retrieve data efficiently, helping you reduce database load and improve performance.
📚 What’s New in Laravel 11: A Comprehensive Guide for Developers
In this guide, we will delve into every major update and feature in Laravel 11, ensuring that your development practices are up-to-date and optimized for performance.
📚 Mastering Laravel Macros and Keep Your Code Clean
Learn How to Extend Laravel’s Core Classes with Custom Methods for Cleaner, More Maintainable Code.
📚 Mastering SOLID Principles in Laravel
Step-by-Step Guide to Writing Cleaner and More Efficient Code.
📚 Understanding Relationships in Salesforce and working with SOQL in Laravel Eloquent
In Salesforce Object Query Language (SOQL), joins are handled differently compared to traditional SQL. SOQL does not support SQL-like joins directly; instead, it uses a concept known as relationship queries.
Symfony
📚 SymfonyLive Berlin 2025: Save the date!
The next SymfonyLive Berlin 2025 will take place on April 3 - 4! Enjoy now the early bird registration ticket & the call for papers.
📚 Extended Symfony project structure.
While frameworks usually provide you with a prebuilt folder setup to make your life easier so you can start developing immediately, a real project architecture requires a more flexible and sufficient structure, with clear responsibility segregation for better control.