All posts

Hiring a mid-level Laravel dev: the signals that actually matter

Published May 30, 2026 · by Majd Ghithan, written with the help of AI

Hiring a mid-level Laravel dev: the signals that actually matter

The best hire I ever made failed my first question. I asked him to explain service containers and he stumbled, went quiet, then said "honestly I use them every day but I've never had to explain the internals, let me think." He got there slowly, out loud, correcting himself twice. I almost held it against him. Then I realized I'd just watched exactly how he'd behave when stuck on a real bug: no bluffing, thinks in the open, self-corrects. I hired him. Best call of that year.

Meanwhile the candidate who answered every definition instantly turned out to have memorized answers and couldn't write a working query. Interviews reward the wrong thing by default. Here's what I've learned to actually look for.

Depth hides behind boring questions

Anyone can recite what a queue is. The signal is in the follow-up: "what happens if the job runs twice?" A mid-level dev who's actually shipped queued work has been burned by a double-charge and lights up. One who's only read about queues gives you the definition again, louder.

So I stopped asking "what is X" and started asking "tell me about a time X broke on you." You cannot fake a war story. The specifics, the wrong turn, the 2am log line, only exist if you were actually there.

Signal vs red flag

After enough interviews you build a table in your head. Here's mine for mid-level Laravel:

What they sayGreen signalRed flag
"I used queues"Talks about retries, idempotency, failed_jobsThinks queue = "make it faster"
"I write tests"Tests behavior, has opinions on what NOT to test"I test getters and setters," 100% coverage as a goal
"I know Eloquent"Mentions N+1, with(), when to drop to query builderOnly ever Model::all() then filters in PHP
"I've done migrations"Has locked a table in prod and learned from itNever ran one against real data volume
Explaining a past bugOwns their mistake, names the root causeEvery bug was someone else's fault or "just a weird glitch"
Asked something they don't know"I don't know, here's how I'd find out"Bluffs, invents an API that doesn't exist

That last row is the one I weight highest. I'm not hiring someone who knows everything. Nobody mid-level does. I'm hiring someone who's honest about the edge of what they know, because that's the person who won't ship a confident guess to production.

Take-home vs live coding

I've swung between both and landed here: a small take-home, then talk about it live.

A live-coding gauntlet mostly measures who performs well with someone breathing down their neck, which is not the job. Real work is quiet, with docs open and time to think. But a pure take-home has its own hole, you don't know who actually wrote it, especially now.

So the take-home stays small, an hour, tops, and the interview is me asking them to walk through their own code. "Why a job here and not inline?" "What happens if this API times out?" "What would you change with another day?" You find out fast whether the hands that wrote it are the hands in the room. Someone who wrote it defends the tradeoffs easily. Someone who didn't gets vague.

What candidates overclaim

Mid-level CVs are a genre. Everyone "architected scalable systems" and "led the migration." Some did. My job is to find the seam between the resume and the reality, gently.

I don't challenge, I zoom in. "You led the payments migration, nice, what was the hardest edge case?" Real ownership has texture, the weird refund state, the double-webhook, the thing that shipped broken and how they caught it. Borrowed ownership goes abstract immediately: "you know, just the usual complexity." The detail is the tell. People who did the work can't help remembering the scar.

The bar for mid-level

I'm not looking for a senior in disguise or someone who never gets stuck. Mid-level means: writes correct, readable Laravel without hand-holding, knows what they don't know, and gets unstuck by reading and asking rather than bluffing and hoping. Curiosity over credentials, honesty over polish.

The polished candidate who's memorized the right words is a worse bet than the one who thinks slowly out loud and says "I'm not sure, let me reason through it." One of them will bluff on your production database someday. The other will ask. Hire the one who asks.

🤖 Heads up: this post was drafted with AI. Spot something wrong or off?Edit it on GitHub & open a PR
Majd Ghithan

Majd Ghithan

Full-Stack Engineer & Tech Lead

More posts

Laravel finally resizes images for you

Laravel finally resizes images for you

Every Laravel app I've built that takes an avatar ended the same way: composer require intervention/image, wire up a facade, write a little service class, and hope the next dev…

July 26, 2026Read more
What actually breaks at 100,000 users (that never breaks in a demo)

What actually breaks at 100,000 users (that never breaks in a demo)

The first time I shipped a dashboard to a hundred thousand active users, nothing I had tested was what broke. Everything that failed had passed every check I ran. It worked on m…

July 25, 2026Read more
Where your queue jobs go to die under load

Where your queue jobs go to die under load

The support ticket said "I never got my invoice email." I checked the logs. The job ran. It succeeded. failedjobs was empty. Everything said the email went out. It did not.

July 18, 2026Read more
The indexes you're missing (and the one that's hurting you)

The indexes you're missing (and the one that's hurting you)

A client sent me a query that took 4.2 seconds. One WHERE, one ORDER BY, a table with three million rows. I added a single index and it dropped to 11 milliseconds. They asked if…

July 11, 2026Read more
Caching in Laravel without the stampede

Caching in Laravel without the stampede

We cached the homepage's "trending products" query for five minutes. It was our slowest query — about 900ms, a big aggregation across orders. Caching it took the homepage from s…

July 4, 2026Read more
Taking one endpoint from 800ms to 80ms

Taking one endpoint from 800ms to 80ms

The order-details endpoint took 800 milliseconds. Not broken, just slow enough that the app felt heavy everywhere it was used. The team's instinct was "the server needs more mem…

June 27, 2026Read more
The N+1 you can't see (it's hiding in your accessors)

The N+1 you can't see (it's hiding in your accessors)

I've fixed hundreds of N+1 queries. The easy ones are right there in the controller — a foreach with $order-customer inside it, obvious the moment you read the code. Those aren'…

June 20, 2026Read more
The Friday deploy that charged customers twice

The Friday deploy that charged customers twice

It was 4:40 on a Friday. The change was tiny — a one-line tweak to how we called the payment provider, plus a bump to the queue worker's timeout. Small, tested, reviewed. I depl…

June 13, 2026Read more
Code review people don't dread

Code review people don't dread

I once left forty-one comments on a junior's pull request. I was proud of it. Thorough, I told myself. The next day he barely made eye contact, and his next PR sat open for a we…

June 6, 2026Read more
Saying no to a feature without being the 'no' person

Saying no to a feature without being the 'no' person

For about a year I was the engineer everyone learned to route around. Not because I was wrong, I was usually right, but because my answer to new ideas was a flat "no, that'll br…

May 23, 2026Read more
My first 90 days as a tech lead (and the habit I had to break)

My first 90 days as a tech lead (and the habit I had to break)

Three weeks into leading my first team, I stayed late to "help" by rewriting a junior's feature myself. It was faster my way. I pushed it, felt productive, went home. The next m…

May 16, 2026Read more
Breaking down the task that scares you

Breaking down the task that scares you

There's a specific kind of ticket that makes my stomach drop. Not the hard ones, hard is fine. It's the ambiguous ones. "Migrate billing to the new provider." "Add multi-tenancy…

May 9, 2026Read more
1:1s that aren't just status updates

1:1s that aren't just status updates

For my first few months as a lead, my 1:1s were thirty minutes of me asking "so, what are you working on?" and nodding at answers I already knew from standup. We both left sligh…

May 2, 2026Read more
Get the business logic out of your controllers

Get the business logic out of your controllers

I once opened a OrderController@store method that was 240 lines long. Validation, a discount calculation, three model writes, a Stripe charge, two emails, a Slack notification,…

April 25, 2026Read more
Form Requests are the most underrated thing in Laravel

Form Requests are the most underrated thing in Laravel

Most Laravel devs meet Form Requests once, in a tutorial, use them to hold a rules() array, and never look deeper. That's a shame, because a Form Request is the cleanest place i…

April 18, 2026Read more
Testing Laravel without mocking everything

Testing Laravel without mocking everything

I inherited a codebase once with 900 unit tests and no confidence. Every test mocked the repository, mocked the model, mocked the mailer, mocked the thing three layers down. The…

April 11, 2026Read more
Three Eloquent features that clean up your models

Three Eloquent features that clean up your models

The messiest Laravel model I ever wrote wasn't messy because of Eloquent. It was messy because I ignored the parts of Eloquent that exist specifically to keep it clean. The same…

April 4, 2026Read more
The migration that locked the table for eight minutes

The migration that locked the table for eight minutes

The deploy looked boring. One migration, adding a lastseenat column to the users table with a default of now(). I'd written a hundred like it. I ran it at 2pm on a Tuesday becau…

March 28, 2026Read more
Chasing a memory leak in a Laravel queue worker

Chasing a memory leak in a Laravel queue worker

The alert came in at 4am: one of our queue:work processes had been OOM-killed. The supervisor restarted it, it processed jobs for about forty minutes, and got killed again. It w…

March 21, 2026Read more