@extends('layouts.app') @section('title', 'Достижения') @php $conditionLabels = [ 'first_lesson' => 'Первый урок', 'attendance_streak' => 'Посещения подряд (дней)', 'dz_streak' => 'ДЗ подряд (дней)', 'first_kr' => 'Первый срез', 'perfect_kr' => 'Балл за срез не ниже', 'active_days' => 'Дней в системе', 'total_attendance' => 'Всего посещений', 'level_reached' => 'Достигнут уровень', ]; @endphp @section('content')

Достижения

@if ($items->isNotEmpty())
@foreach ($items as $i) @endforeach
ID Иконка Название Условие Награда Статус Получено Действия
{{ $i->id }} {{ $i->icon }} {{ $i->name }} {{ $conditionLabels[$i->condition_type] ?? $i->condition_type }}: {{ (int) $i->condition_value }} {{ (int) $i->coin_reward }} 🪙 @if ($i->active) Активно @else Отключено @endif {{ (int) $i->claim_count }}
@else

Достижений пока нет.

@endif
@endsection @push('scripts') @endpush