@extends('admin.layouts.master') @section("title","View Users") @section('content') @if(Session::has('flash_message_error')) @endif @if(Session::has('flash_message_success')) @endif

View All Users




@if(count($user)>0) @php $i = 1; @endphp @foreach($user as $users) @if($users->type == "2") @elseif($users->type == "3") @endif @endforeach @endif
ID Name Email UserType Registerd Status Action
{{$i++}} {{$users->name}} {{$users->email}}TeacherStudent {{$users->created_at->format('d/M/Y')}} status ? 'checked' : '' }}>
@endsection