Tag: laravel-and-php
All posts with tag "laravel-and-php".
-
Beyond Eloquent: Think Like a Database (Laravel + PostgreSQL Performance Part 1)
Eloquent is elegant, but every Laravel developer eventually hits performance walls caused by hidden SQL inefficiencies. This first part explains the mindset shift from imperative PHP to declarative SQL, exposes pitfalls like N+1 and the 'shopping list problem,' and gives a simple first habit: inspect the actual queries your code generates.
-
How to Start a Laravel Project for Maximum Speed & Maintainability?
Learn the Laravolt way to kickstart your Laravel projects with enterprise-grade quality standards. This beginner-friendly guide covers everything from installation to database design, model relationships, and testing—all designed to help you build robust applications quickly and efficiently.
-
Laravel Octane 05: Production Deployment & Best Practices for High-Performance Laravel
Master the final steps of deploying your high-performance Laravel Octane application with Nginx, Supervisor, and essential optimizations. Learn how to set up a production-like environment locally, manage Octane processes, and apply best practices for a robust deployment.
-
Laravel Octane 04: Advanced Caching, Database Optimization, and Monitoring with Swoole
In this article, we explore advanced caching strategies with Laravel Octane, database optimization techniques, and monitoring tools to ensure your high-performance Laravel application runs smoothly in production.
-
Laravel Octane 03: Concurrency and Asynchronous Workflows with Swoole
Explore the power of concurrency and asynchronous workflows in Laravel Octane with Swoole. Learn how to create a high-performance application that handles multiple tasks simultaneously, improving responsiveness and performance.
-
Laravel Octane 02: Setting Up Your High-Performance Environment with Sail
Learn how to set up a high-performance Laravel Octane environment using Sail and Swoole. This guide walks you through the installation process, configuration, and best practices for development.
-
Laravel Octane 01: Unlocking Supersonic Speed: An Introduction to Swoole
A beginner-friendly guide to understanding Laravel Octane and Swoole, focusing on practical performance improvements for your Laravel applications.
-
Rebuilding Laravel's `old()` and `@error` Magic in Hypervel — The Real Way It Works
Learn how to recreate Laravel's form error and old input behavior in Hypervel, a coroutine-native PHP framework. This guide walks through validation, session flashing, and displaying errors in Blade views without hidden magic.
-
Step-by-Step Guide: Creating a Web Authentication System in Hypervel
Learn how to build a secure web authentication system using Hypervel, covering user registration, login, and session management.