@extends('cfp.layouts.master') @section('content')

Accounts all accounts

@csrf
@if (request()->query("search")) @endif
@include('cfp.components.error_alert')
@forelse ($accounts as $account) @empty @endforelse
ID Username E-Mail Role Registration date Last seen Actions
{{ $account->USN }} {{ $account->USER_ID }} {{ $account->E_MAIL ?? "..." }} {!! Helper::web_getAuthorityLev($account->AUTHORITY_LEV, true) !!} {{ Helper::date_stringFormat($account->REG_DATE, false) }} {{ Helper::date_stringFormat($account->LAST_UPD_DATE, false) }}
No accounts found, try again later.
{{ $accounts->links() }}
@endsection