@extends('admin.layout.app') @section('body')

{{ __('admin.exam_types') }}

{{ __('admin.define_exam_categories_midterm_final_quiz_etc_and_their') }}
{{ __('admin.new_exam_type') }}
@if(session('success'))
{{ session('success') }}
@endif {{-- Filter Card --}}
{{ __('admin.reset') }}
@forelse($examTypes as $type) @empty @endforelse
{{ __('admin.id') }} {{ __('admin.name') }} {{ __('admin.weight') }} {{ __('admin.status') }} {{ __('admin.actions') }}
{{ $type->id }} {{ $type->name }} {{ $type->weight }}% {{ $type->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
{{ __('admin.no_exam_types_found') }}
{{-- Bootstrap 4 Pagination Style --}}
{{ $examTypes->appends(request()->query())->links('pagination::bootstrap-4') }}
@endsection