@extends('pia.layouts.app') @section('title','Training Training Courses') @section('content')
@if (isset($data['candidatesCount'])) {{ $data['candidatesCount']}}@endif
No. of candidates in ongoing courses
@if (isset($data['candidatesCountCompleted'])) {{ $data['candidatesCountCompleted']}}@endif
No. of candidates completed the courses
@if (isset($data['candidatesCountPlaced'])) {{ $data['candidatesCountPlaced']}}@endif
No. of candidates placed
Ongoing training programs
@forelse ($data['trainigs'] as $trainig) @empty @endforelse
Sl.No Name of Course No. of students registered End date
{{ $trainig->id }} {{ $trainig->training_name }} {{ $trainig->total_students }} {{ $trainig->end_date }}
Currently, there are no ongoing training programs.
@endsection