@foreach($plan->dates as $key => $date)
@php
$isActive = null;
if($date->date == verta()->format('Y/m/d')){
$isActive = 'active';
}
@endphp
@foreach($date->boxes as $key => $item)
@php
$color = $item->boxType->color;
$boxKey = $item->boxType->name;
@endphp
{{ $item->boxType->title == 'تست آزمونی' ? 'تست جمع بندی' : $item->boxType->title }}
{{ $item->lesson?->name }}
{{ $item->subject }}
{{ $item->resource }}
{{ $item->time ?? '-' }} دقیقه
مدت زمان
@php
$dir = "";
$farhangians = ["هوش و استعداد", "دینی دهم", "مهارت معلمی"];
switch ($item->box_type_id){
case 1:
if(in_array($item->lesson->name, $farhangians)){
$dir = "FastChargeMolaemShoPlan";
}else{
$dir = "FastchargeBooklet";
}
break;
case 2:
$dir = "";
break;
case 3:
$dir = "FastchargeBank";
break;
case 4:
$dir = "";
break;
case 5:
$dir = "FastChargeRooznaameDivarriPlan";
break;
case 8:
$dir = "";
break;
}
@endphp
@if($item->box_type_id != 8)
دانلود فایل
@endif
@if($item->box_type_id == 1 && in_array($item->lesson->name, $farhangians))
دانلود ویدیو
@endif
@endforeach
@can('admin')
@endcan
@endforeach