@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')

{{trans('labels.lectures')}}

@endsection @section('content')
@foreach($lectures as $lecture) @endforeach
{{trans('labels.type')}} {{trans('labels.name')}} {{trans('labels.all')}} {{trans('labels.needs_reply')}} {{trans('labels.replied')}}
{{trans('labels.'.$lecture->type)}} {{$lecture->title}} {{$lecture->allQuestionsCount()}} {{$lecture->pendingQuestionsCount()}} {{$lecture->doneQuestionsCount()}}
@endsection @section('script') @endsection