@extends('tpl.admin.layout') @section('title', 'User List') @push('css') @endpush @section('content')
User List
@foreach ($userList as $usr) @endforeach
# Name Username Email Status Action
{{$loop->iteration}} {{$usr->user_fullname}} {{$usr->user_name}} {{$usr->user_email}} {{ucfirst($usr->user_status)}}
@endsection @push('script') @endpush