@extends('layouts.student_layout') @section('content') @php $batchDetails = []; foreach ($studentBatchAssessmentDetails as $details) { foreach ($details->batchDetail as $batch) { $batchDetails[] = $batch; } } $batchTrainerDetails = []; foreach ($studentBatchAssessmentDetails as $details) { foreach ($details->batchDetail as $batches) { foreach ($batches->batch->batchTrainers as $trainer) { $batchTrainerDetails[] = $trainer; } } } $trainerList = []; foreach ($batchTrainerDetails as $trainer) { $trainerList[] = $trainer->trainer->name; } @endphp
You are not enrolled in any batches matching the selected filters.