CCelestiallines.com

Laravel Articles

Notes on PHP, Drupal, Laravel, React, and Next.js development.

How to Build a REST API in Laravel

Jun 2026

How to Build a REST API in Laravel

Building a real Laravel REST API: versioned routes, API Resources for response shaping, Form Request validation, consistent error handling, Sanctum token authentication vs Passport, rate limiting, avoiding N+1 queries, testing, and documentation.

Read more →
Laravel Queues and Jobs: A Practical Guide

Jun 2026

Laravel Queues and Jobs: A Practical Guide

Laravel queues in practice: creating and dispatching jobs, choosing a driver (database vs Redis vs SQS), running workers safely in production, job batching with progress tracking, job middleware for rate limiting, and handling failures and retries correctly.

Read more →
How to Run Composer Install in Laravel 11

Jun 2026

How to Run Composer Install in Laravel 11

The difference between composer install and composer create-project, running it on a fresh vs existing Laravel 11 project, production flags (--no-dev, --optimize-autoloader), private package auth, and CI/CD habits worth adopting.

Read more →
How to Install Laravel

Jun 2026

How to Install Laravel

A complete walkthrough of installing Laravel: requirements, choosing between Composer and the Laravel installer, picking a database, environment configuration, migrations, and the common setup errors people actually hit.

Read more →
How to Create Login and Registration Functionality in Laravel

Jun 2026

How to Create Login and Registration Functionality in Laravel

Every real path to Laravel authentication compared — Breeze, Jetstream, and building it manually with the Auth facade — plus how login, registration, password reset, and email verification actually work under the hood.

Read more →