惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
量子位
小众软件
小众软件
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
G
Google Developers Blog
博客园 - 叶小钗
H
Help Net Security
Jina AI
Jina AI
Y
Y Combinator Blog
Last Week in AI
Last Week in AI
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
MyScale Blog
MyScale Blog
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Vercel News
Vercel News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How Blade's @context directive broke our JSON-LD
GaijinAnime · 2026-04-25 · via DEV Community

GaijinAnime

How Blade's @context directive broke our JSON-LD

If you have schema.org JSON-LD inside a Blade template and you upgrade to Laravel 12, you may have just broken those views. Quietly. Without a deprecation warning.

We hit this last week on a blog index running 12.44.0. The page returned HTTP 500 for every visitor for three weeks before anyone noticed. There is a public issue with the same symptom against 12.20+: laravel/framework#56248.

This is the 90-second writeup so you do not waste an afternoon on it.

Symptom

Any Blade view that contains "@context" as a literal key in inline JSON-LD throws:

syntax error, unexpected end of file, expecting "elseif" or "else" or "endif"
(View: /resources/views/blog/index.blade.php)

Enter fullscreen mode Exit fullscreen mode

The view itself parses fine. Every @if/@endif, @foreach/@endforeach, @push/@endpush is balanced. Yet the compiled view in storage/framework/views/ is malformed.

Cause

Laravel 12 added the @context Blade directive as part of the request-scoped Context feature. The trait lives at vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/CompilesContexts.php.

@context is an opening block directive. It expects a matching @endcontext later in the template.

But schema.org JSON-LD looks like this:

<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "Blog",
    "name": "..."
}
</script>

Enter fullscreen mode Exit fullscreen mode

When the Blade compiler scans the template, it sees the literal text @context inside the JSON, treats it as the opening of a directive block, and waits for @endcontext. None ever appears. The compiler eventually reports the error at the end of the file, with a stack trace that points 200 lines past the actual cause.

If you peek at the compiled file in storage/framework/views/, you can see the bad output:

"<?php $__contextArgs = [];
if (context()->has($__contextArgs[0])) :
if (isset($value)) { $__contextPrevious[] = $value; }
$value = context()->get($__contextArgs[0]); ?>": "https://schema.org",

Enter fullscreen mode Exit fullscreen mode

That was supposed to be a literal JSON key.

Scope

This affects only literal @context text inside a .blade.php file. JSON-LD emitted via json_encode($data), Js::from($data), or @json($data) is unaffected — those write their output through PHP, never through Blade's directive parser.

Fix

Two characters. Escape the @ with another @:

 <script type="application/ld+json">
 {
-    "@context": "https://schema.org",
+    "@@context": "https://schema.org",
     "@type": "Blog",
     ...
 }
 </script>

Enter fullscreen mode Exit fullscreen mode

Blade renders @@context as a literal @context in the rendered HTML. No other JSON-LD keys collide — @type, @id, @graph are not Blade directives — so this is the only character you need to escape.

If your views were cached during the broken state, run php artisan view:clear once. Laravel recompiles modified Blade files automatically on the next request, so you only need this if a stale compiled view is sticking around.

How to find every instance

grep -rn '"@context"' resources/views

Enter fullscreen mode Exit fullscreen mode

Anywhere that pattern appears, escape it. Worth doing as a one-line audit even if your blog index works — you may have JSON-LD in other templates (FAQ schema, Product schema, Breadcrumb schema, Article schema). All of them use @context as a top-level key. All of them break the same way after the upgrade.

We found three locations. One was throwing 500s on every hit. The other two were inside templates that happened not to be visited since the upgrade.

What I would change about Laravel's behavior

A parse-time warning when the Blade compiler sees @context followed by : rather than ( or whitespace would catch this in development. JSON-LD keys are the dominant case for that pattern; user-defined directives almost always take parens or arguments. A heuristic warning seems cheap and high-value.

For now: @@context and move on.


(Disclosure: I work on Apps66, where this bug bit us. The fix is the only point.)