@extends('layouts.userLayout') @section('content')
Total Students : {{ isset($count) && $count ? $count : '' }}
@if(isset($_GET['class_id']) && $_GET['class_id'] || isset($_GET['section_id']) && $_GET['section_id'] || isset($_GET['in_incharge']) && $_GET['in_incharge'] == 'yes' || isset($_GET['in_incharge']) && $_GET['in_incharge'] == 'no') @endif
@if(isset($students) && count($students) > 0) @include('teacher.students.listingLoop') @else @endif
Sr. No. Student's Name Father's/Guardian Name Classes Contact Actions
...
@include('frontend.partials.pagination',['pagination' => $students,'url' => route('teacher.students')])
...
...
@include('teacher.students.deleteModal') @endsection