@extends('layouts.app') @section('content') @php // Map the English band value from the report to a translatable key $bandRaw = $report['band'] ?? null; $bandKey = match($bandRaw) { 'Below grade' => 'below', 'Above grade' => 'above', 'At grade' => 'at', default => null, }; $bandLabel = $bandKey ? __('app.band.'.$bandKey) : ($bandRaw ?? '-'); @endphp