@extends('layouts.teacher') {{ config('app.name', 'Laravel') }} | Teacher | Study Material @section('main-content')
@if(Session::has('success')) @endif @if ($errors->any()) @endif

Records / Study Materials

Study Material List
@if(count($studymaterials) != 0) @foreach($studymaterials as $key => $studymaterial) @endforeach @else @endif
# Title Batch Subject Pdf Action
{{ $key+1 }} {{$studymaterial->heading}} {{ $studymaterial->batch->name." ( ".$studymaterial->class_name."th )" }} {{ $studymaterial->subject->name}} View
@csrf @method('DELETE')
{{ 'No record found' }}
@endsection