@extends('admin.layouts.master') @section('title') Chapter Management | @endsection @section('content')

Chapter List

@if (session('success'))
{{ session('success') }}
@endif @forelse ($records as $record) @empty @endforelse
# Id Chapter Name Name Description Module Name Can Access Serial/Sorting Number Status Action
{{ $record->id }} {{ $record->chaptername }} {{ $record->name }} {{ $record->description }} {{ $record->module?->module_name ?? 'N/A' }} {{ $record->is_paid == 1 ? 'Yes' : 'No' }} {{ $record->sort_num }} @if ($record->status == 1) Active @else Inactive @endif
@csrf @if ($errors->any()) @endif @method('DELETE')
No data found
@endsection