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

Video List

@if (session('success'))
{{ session('success') }}
@endif @forelse ($records as $record) @empty @endforelse
# Id Video Video Name Title Chapter Can Access Status Action
{{ $record->id }} {{ $record->video_name }} {{ $record->title }} {{$record->chapter_id}} @if($record->chapter_id) {{ optional($record->chapter)->chaptername }} - {{ optional($record->chapter)->name }} @else Not Assigned @endif @if ($record->is_paid) Yes @else No @endif @if ($record->status) Active @else Inactive @endif
@csrf @if ($errors->any()) @endif @method('DELETE')
No data found
@endsection