@extends('layouts.admin') @section('content')

จัดการกลุ่มคำถาม

รายการกลุ่มคำถามทั้งหมด
{{ $groups->total() }} กลุ่ม
@if ($groups->count() > 0)
@foreach ($groups as $index => $group) @endforeach
ลำดับ ชื่อกลุ่มคำถาม จำนวนคำถาม สถานะ วันที่สร้าง ผู้สร้าง จัดการ
{{ $index + 1 + ($groups->currentPage() - 1) * $groups->perPage() }}
{{ $group->name }}
@if ($group->description) {{ Str::limit($group->description, 100) }} @endif
{{ $group->questions->count() }} คำถาม
is_active ? 'checked' : '' }} title="{{ $group->is_active ? 'ปิดการใช้งาน' : 'เปิดการใช้งาน' }}">
{{ $group->DtmIns->format('d/m/Y H:i') }} @if ($group->creator)
{{ $group->creator->Customer_Name }}
@else - @endif
{{ $groups->links() }}
@else

ไม่พบกลุ่มคำถาม

เริ่มต้นด้วยการสร้างกลุ่มคำถามใหม่

สร้างกลุ่มคำถามแรก
@endif
@endsection