Skip the third-party status page subscription. A scheduled command, a small model, and one public route cover most small teams needs.
Tutorials
Render invoices as real HTML and CSS, then convert to PDF with headless Chrome instead of fighting a limited PDF-specific templating engine.
A step-by-step guide to a debounced, keyboard-navigable autocomplete field backed by Eloquent, no JavaScript framework required.
You do not need a machine learning service to recommend related content. A weighted scoring query in Eloquent gets you most of the way there.
Tag articles, products, and anything else through a single reusable table using a polymorphic many-to-many relationship.
Who changed this record, and when? Build a reusable audit trail using Eloquent observers so every create, update, and delete is logged automatically.
Storing money as a float invites rounding bugs. Build a custom Eloquent cast that keeps cents as integers in the database but exposes a clean value object.
Take a Laravel app from hardcoded English strings to a properly localized interface with translation files, pluralization, and a middleware that sets the locale.
Building a CSV export that holds an entire table in memory works until the table grows. Here is how to stream a download row by row so memory stays flat.
Receive third-party webhooks safely in Laravel: verify signatures, skip CSRF correctly, guarantee idempotency, and process the payload on a queue.
Import a huge CSV without timing out by streaming it with LazyCollection and processing chunks through a Laravel job batch with progress tracking.
Wire up TOTP two-factor authentication in a Laravel app using Laravel Fortify, from installation through enabling, confirming, and challenging logins.