@extends('admin/layouts.master') @section('title', 'All Pages - Admin') @section('body')
@include('admin.message')
@foreach($record as $key=>$p) @endforeach
# Meeting ID Subcategory Batch Subject Topic Name Teacher Name Delete
{{$key+1}} {{$p->meetingid}} @php $subcat=$p->subcategory_id; $subcategory= App\SubCategory::where('id',$subcat)->where('status','1')->get(); @endphp @if(isset($subcategory[0]->title)) {{$subcategory[0]->title}} @endif @php $course_id=$p->course_id; $coursesnames = App\Course::where('id',$course_id)->where('status','1')->get(); @endphp @if(isset($coursesnames[0]->title)) {{$coursesnames[0]->title}} @endif @php $subject_id=$p->course_id; $subjectnames = App\Subject::where('id',$subject_id)->where('status','1')->get(); @endphp @if(isset($subjectnames[0]->title)) {{$subjectnames[0]->title}} @endif {{$p->topicname}} {{$p->presentator_name}}
{{ csrf_field() }} {{method_field('PATCH')}}
@endsection