@extends('layout.app') @section('title') {{ __('الطلاب المشاريكن بالبرنامج') }} @stop @section('css') @stop @section('content')

{{ __('الطلاب المشاريكن بالبرنامج') }}

@if ($students->count() >= 1) @endif
{{-- --}} @foreach ($students as $student) @endforeach
# {{ __('اسم الطالب ') }} {{ __('الصف') }} {{ __('المهمة') }} {{ __('Action') }}
{{ $loop->iteration }} @if ($student->student) {{ $student->student->name }} @endif @if ($student->student) @if ($student->student->class) {{ $student->student->class->name }} @endif @endif @if ($student->mission) {{ $student->mission }} @else بدون مهمه @endif حذف تعديل

@if ($students->count() == 0)
{{ __('لايحتوي هذا البرامج على طلاب حالياَ') }}
@endif
@endsection @section('js') {{-- --}} @stop