@foreach($lesson->subjects as $subject)
@php
$color = "dark";
$inPlan = in_array($subject->id, $boxSubjects->pluck('subject_id')->toArray());
if($inPlan){
$color = 'warning';
}
if(in_array($subject->id, $userReportsSubjects->pluck('subject_id')->toArray())){
$color = 'success';
}
@endphp
{{ $subject->name }}
@endforeach