@extends('layouts.default') @section('styles') @stop @section('scripts') @include('cdn.datatables') @stop @section('panel-heading') User Maintenance @stop @section('panel-presentation') @stop @section('content')
From this page, you can edit user information and add new users.
First Name | Last Name | Address | Username | User Role | User Status | Last Logged In | Actions | @foreach($users as $user)|
---|---|---|---|---|---|---|---|---|
{{ $user->first_name }} | {{ $user->last_name }} | {{ $user->associationUnit ? $user->associationUnit->address : '' }} | {{ $user->email }} | {{ $user->username }} | {{ UserRole::getRoles($user->user_role_id) }} | {{ UserStatus::getStatusString($user->user_status_id) }} | {{ $user->last_logged_in ? $user->last_logged_in->setTimeZone('America/Chicago')->format("D, M d, Y g:i A") : '' }} | Edit |