{{-- "Добавить результаты" matrix form + "Прогресс по ученикам" history table, rendered both by admin/ent_scores/index.blade.php (initial load) and by EntScoreController::store()'s AJAX branch, which re-renders this partial after a successful submit and returns it as data.html for the js-ajax-form handler (layouts/app.blade.php) to swap in via data-replace-target="#entScoresCard" — needed to clear the matrix back to blank inputs and refresh the progress table, both of which only happened via full reload before. Params: $search, $classId, $students, $sections, $detail. --}}
| Ученик | Предыдущий | Последний | Δ |
|---|---|---|---|
| {{ $row['last_name'] . ' ' . $row['first_name'] }} | {{ $row['previous_score'] ?? '—' }} | {{ $row['latest_score'] }} | @if ($row['delta'] !== null) {{ ($row['delta'] >= 0 ? '+' : '') . $row['delta'] }} @else — @endif |