@extends('layout.app') @section('title') {{ __('متدربين الدورة ') }}{{ $course->title }} @stop @section('css') @stop @section('content')

{{ __('متدربين الدورة ') }}{{ $course->title }}

اضافة متدربين
@forelse ($course->users as $user) {{-- user name --}} @empty @endforelse
الاسم حالة الحضور العمليات
{{ $user->name }}
id)->where('user_id', $user->id)->first()->status == '1') checked @endif />
حذف تعديل الحالة @if ($course->end_date <= Carbon\Carbon::now()->format('Y-m-d')) @if ($course->course_association_id != 1) @php $course_user = App\Models\CourseUser::where([ ['user_id', $user->id], ['course_id', $course->id], ])->first(); @endphp @if ($course_user->presence_from_user && $course_user->status == '1') مشهد الحضور @endif @endif @endif
لا يوجد متدربين
@foreach ($course->users as $item) @endforeach
@endsection