@inject('FrontendPresenter', 'App\Presenters\FrontendPresenter')
@extends('layouts.frontend')
@section('title', $sc->meta_title)
@section('meta_description', $sc->meta_description)
@section('meta_keywords', $sc->meta_keyword)
@section('json-ld', Breadcrumbs::view('breadcrumbs::json-ld', 'countries_study-courses-post', $country->country_id, $country->country_name, $tab->id, $tab->title, $sc->title))
@section('content')
{{ Breadcrumbs::render('countries_study-courses-post', $country->country_id, $country->country_name, $tab->id, $tab->title, $sc->title) }}
@foreach ($course_list as $k => $v)
@if (($k % 2) == 0)
{{ $v->title }}
{!! $v->description !!}
@else
{{ $v->title }}
{!! $v->description !!}
@endif
@endforeach
@stop
@section('js')
@stop