@extends('web.student.index') @section('title', 'Minhas Aulas') @section('content') @include('web.student.partials.sideBar') Agendar Aula @include('web.student.partials.sideBarCalendar') Minhas aulas Próximas Histórico Minhas aulas Próximas Histórico Agendar aula @if( count($futureLessons) !== 0 ) @foreach($futureLessons as $lesson) @include('web.partials.lessonCard') @endforeach @else Opa! Nenhuma aula encontrada. @endif @if( count($pastLessons) !== 0 ) @foreach($pastLessons as $lesson) @include('web.partials.lessonCard') @endforeach @else Ah Não! Seu histórico esta vázio @endif @stop