@php $page = "user_management"; @endphp @extends('admin/include/layout')

User Management

@if(Session::has('error'))
× {{ Session::get('error') }}
@endif @if(Session::has('success'))
× {{ Session::get('success') }}
@endif
@php $s_no = "1"; @endphp @foreach($details as $row) @php $s_no++; @endphp @endforeach
S.No User Id User Name Email Status
{{$s_no}} {{$row->user_id}} {{$row->full_name}} {{$row->email}} @if($row->status == 'active') Active @endif @if($row->status == 'disable') Disable @endif