@extends('dashboard.layouts.default') @section('content') @if ($errors->any())
@endif
@include('layout.top-ads')
@php $allSubjects = App\Models\Subject::select('slug','name')->get(); @endphp
@foreach($allSubjects as $sub) {{ $sub->name }} @endforeach
@foreach($curriculum as $row) @php $curr_slug = rawurlencode($row->name); @endphp {{$row->name}} @endforeach

Select the topic to show videos and quizzes

@endsection @section('scripts') @endsection