@extends('layouts.teacher') @section('content')
Inactive Students
@lang('student.filter by')

Inactive Students List

@if (count($inactive) > 0)
@endif
@php $count=0; @endphp @foreach ($inactive as $student ) @endforeach
ID enrollment method Student Name Email Phone Course Abscence Count
{{ ++$count }} {{$student->fees_by_lesson ? 'by lesson':'by course'}} {{$student->first_name." ".$student->middle_name." ".$student->last_name}} {{$student->email}} {{$student->phone}} {{$student->has_label ? ' ( '.$student->label.' ) ':''}} {{$student->cname.'( '. $student->lshort_name .' ) '.'-'.$student->acyname}} {{$student->attendance_count}}
{{ $inactive->appends(Request::except('page'))->render('inc.paginate') }}

Displaying {{$inactive->count()}} of {{ $inactive->total() }} transaction(s).

@endsection @section('teacher-js') @endsection