@extends('Public_site.layouts.app') @extends('Public_site.layouts.header') @extends('Public_site.layouts.banner') @section('titleh2','Talento Connect') @section('titleh3','Active Training Programs Courses List') @section('content')
@if(isset($Course) && count($Course) > 0) @foreach($Course as $Courselist) @endforeach @else @endif
Sl. No Name of the Course Duration Qualification Tick if Interested
{{ $loop->iteration }} {!! $Courselist->tradename !!} {{ $Courselist->duration }} {{ $Courselist->qualification }} @if(in_array($Courselist->id,$selected_course_masters)) @else @if($course_selectable) @endif @endif
No courses available.
@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Note: Click on the courses to view details of the training programs. You can select a maximum of 3 courses.

Submit your interest for the courses and we will get back to you shortly.

You have selected the following list of courses

@foreach($selected_course_masters_list as $list) @endforeach
Name of the Course
{{ $list->tradename }}
@endsection