@extends('admin/layouts/layoutMaster') @section('title', 'Student Lists') @section('vendor-style') @endsection @section('content')
Manage Students
@if(session()->has('errors')) @endif
@if(request('search')) @endif
@if($students) @foreach($students as $student) @endforeach @else @endif
# Name Reg. No Level Email Phone
{{$loop->iteration}} {{$student->name}} {{$student->reg_number}} {{$student->s_level."00"}} {{$student->email}} {{$student->phone}}
No records found
{{ $students->links() }}
@section('page-script') @endsection @endsection