@extends('admin.layouts.app') @section('title', 'Particle Quizzes') @section('page-title', 'Particle Quizzes Management') @section('page-title-jp', 'パーティクルクイズ管理') @section('content') @if (session('success'))
{{ session('success') }}
@endif
@csrf
@foreach ($sentences as $sentence) {{ $sentence->particle_id }} @php $typeColors = [ 'cloze' => 'badge-primary', 'scramble' => 'badge-warning', 'error_correction' => 'badge-danger', ]; $typeLabels = [ 'cloze' => 'Fill-in-the-blank', 'scramble' => 'Scramble', 'error_correction' => 'Error Correction', ]; @endphp {{ $typeLabels[$sentence->type] ?? $sentence->type }} {{ $sentence->full_sentence }}
{{ Str::limit($sentence->meaning, 40) }} {{ $sentence->correct_answer }} @if ($sentence->is_verified) Verified @else Pending @endif
Edit
@endforeach
{{-- Hidden forms for individual row actions --}} @foreach ($sentences as $sentence) @endforeach @endsection