@extends('layout.default') @section('page_toolbar')   Back @endsection @section('content') @if ($errors->any())
@endif
@include('layout.top-ads')

Summary

@if(!$summary->student_filter) @forelse($summary->classes_filter as $key=>$class)
{{ $class->name }}
@empty @endforelse @else @forelse($summary->student_filter as $key=>$student)
{{ $student->name }}
@empty @endforelse @endif @foreach($summary->units_filter as $key=>$unit)
{{ $unit->name }} {{ (($check_videos != null) && (in_array($unit->id, $check_videos))) ? '' : '' }} {{ (($check_quizs != null) && (in_array($unit->id, $check_quizs))) ? '' : '' }}
@endforeach
{{ csrf_field() }}
@include('layout.bottom-ads')
@endsection @push('page-css') @endpush @section('styles') @endsection @section('scripts') @endsection