Category: Laravel

  • Why the AI Tool Stack Often Fails Small Estate Agencies

    Why the AI Tool Stack Often Fails Small Estate Agencies

    A few months ago I sat in on a conversation with the owner of a small letting and sales agency – eight staff, three branches, the kind of business that’s been quietly profitable for fifteen years without anyone in it particularly caring about software. She’d just come back from an industry conference with a list.

    An AI receptionist to answer out-of-hours calls. An AI tool to write listing descriptions. Virtual staging for the vacant flats that never photograph well. A “predictive” lead-scoring platform that promised to flag sellers before they knew they wanted to sell.

    (more…)
  • Laravel’s Pipeline Class Is the Feature You Keep Reinventing

    Laravel’s Pipeline Class Is the Feature You Keep Reinventing

    If you’ve ever written a service method that looks like a staircase of if statements, each one nudging the same array along before handing it to the next, you’ve written a pipeline. You just did it by hand.

    Laravel ships with a proper one. It’s been in the framework for years, it’s what the middleware stack is built on, and hardly anyone reaches for it directly. Which is a shame, because it solves a very specific, very common problem: you have a thing, you want to run it through a series of steps, and each step should be its own small, testable class.

    (more…)