@extends('design_1.panel.layouts.panel') @push("styles_top") @endpush @section('content') {{-- Top Stats --}} @include('design_1.panel.upcoming_courses.my_courses.top_stats') @if(!empty($upcomingCourses) and !$upcomingCourses->isEmpty())
@foreach($upcomingCourses as $upcomingCourseRow)
@include("design_1.panel.upcoming_courses.my_courses.grid_card", ['upcomingCourse' => $upcomingCourseRow])
@endforeach
{{-- Pagination --}}
@else @include('design_1.panel.includes.no-result',[ 'file_name' => 'upcoming_courses.svg', 'title' => trans('update.you_not_have_any_upcoming_courses'), 'hint' => trans('update.you_not_have_any_upcoming_courses_hint') , 'btn' => ['url' => '/panel/upcoming_courses/new','text' => trans('update.create_a_upcoming_course') ] ]) @endif @endsection @push('scripts_bottom') @endpush