@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('students.index'), 'name' => "الطلاب الغير مجددين "],['name'=> 'ادارة الطلاب' ]],['title'=> 'ادارة الطلاب']]; @endphp @section('title', 'الطلاب الغير مجددين') @section('vendor-style') @endsection @section('page-style') @endsection @section('content')
الطلاب الغير مجددين علي العام الحالي @if(! is_null($year)) للعام الدراسي({{ $year->year_name }})@endif
قائمة الطلاب الغير مجددين علي العام الحالي .. {{ sprintf('معروض %s طالب من اصل %s طالب مسجل بالنظام مطابق لمعطيات البحث ',$students->count(),$students->total()) }}
@can('students-without-contract-assign') @endcan كود الطالب اسم الطالب النوع رقم الهوية اسم ولي الامر رقم هوية ولي الامر رقم الجوال الجنسية الصف سنة اخر تعاقد حالة طلب المتابعة تم اسناد المتابعة بواسطة تم اسناد المتابعة الي @foreach ($students as $student) @can('students-without-contract-assign') @if($student->follow_up_id ==null) @endif @endcan {{ $student->id }} {{ $student->student_name }} {{ $student->gender ? 'ذكر' : 'انثي' }} {{ $student->national_id }} {{ $student->parent_name }} {{ $student->guardian_national_id }} {{ $student->phone }} {{ $student->nationality_name }} {{ $student->level_name }} {{ $student->year_name }} @if($student->follow_up_status !== null) {{ \App\Models\FollowUpRequest::getFollowUpStatus()[$student->follow_up_status] }} @else - @endif {{ $student->follow_up_request_created_by??'-' }} {{ $student->follow_up_request_assigned_to??'-' }} @endforeach {{ $students->appends(request()->except('page'))->links() }}
@endsection @section('page-modal')
اسناد طلب متابعة للطلاب
{!! Form::open(['route' => 'students-without-contract.assign','method'=>'POST' , 'onsubmit' => 'showLoader()']) !!} معلومات اسم الموظف @php if(old('guardian_id')) { $guardian = App\Models\User::where('id', old('user_id'))->get()->pluck('first_name','id'); } @endphp
{!! Form::close() !!}
@endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('vendor-script') @endsection @section('page-script') @endsection