@extends('Root.layout.master') @section('title', 'Student List') @section('page_name', 'Student') @push('styles') @endpush @section('content')
@foreach($stu_active as $c) @endforeach
SL User Name Email Phone Actions
{{$loop->iteration}} {{$c->u_name}} {{$c->u_email}} {{$c->u_phone}}
@foreach($stu_verified as $c) @endforeach
SL User Name Email Phone Actions
{{$loop->iteration}} {{$c->u_name}} {{$c->u_email}} {{$c->u_phone}}
@foreach($stu_suspended as $c) @endforeach
SL User Name Email Phone Actions
{{$loop->iteration}} {{$c->u_name}} {{$c->u_email}} {{$c->u_phone}}
@endsection @push('scripts') @endpush