@extends('layout.app') @section('title') {{ __('المراحل المدرسية') }} @stop @section('css') @stop @section('content')

{{ __(' طلاب صف') }} : {{ $class->name }}

{{ __(' مربي الصف ') }} : @if ($class->user) {{ $class->user->name }} @else بدون مربي @endif

{{-- --}} {{-- --}} @foreach ($students as $student) {{-- --}} @endforeach
# {{ __('اسم الطالب') }}{{ __('Action') }}
{{ $loop->iteration }} {{ $student->name }}
@if ($students->count() == 0)

{{ __('لا يحتوي على طلاب حاليا') }}

@endif
@endsection @section('js') {{-- --}} @stop